Skip to main content
アクション一覧
curl --request GET \
  --url https://api.utage-system.com/v1/accounts/{account_id}/actions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": "<string>"
    }
  ],
  "meta": {
    "current_page": 123,
    "per_page": 123,
    "total": 123
  }
}
GET
https://api.utage-system.com/v1/accounts/{account_id}/actions
この機能はプレビュー版です。仕様が変更される場合があります。

Authorizations

Authorization
string
header
required

APIキーをBearerトークンとして指定

Path Parameters

account_id
string
required

アカウントID

Query Parameters

page
integer

ページ番号

Required range: x >= 1
per_page
integer
default:20

1ページあたりの件数(既定20・最大100。超過時は100に丸められます)

Required range: 1 <= x <= 100

Response

アクション一覧

data
object[]
meta
object