メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
actions
/
modules
Actions Modulesを一覧表示
curl --request GET \
  --url https://{tenantDomain}/api/v2/actions/modules \
  --header 'Authorization: Bearer <token>'
{
  "modules": [
    {
      "actions_using_module_total": 123,
      "all_changes_published": true,
      "code": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "dependencies": [
        {
          "name": "<string>",
          "version": "<string>"
        }
      ],
      "id": "<string>",
      "latest_version_number": 123,
      "name": "<string>",
      "secrets": [
        {
          "name": "<string>",
          "updated_at": "2023-11-07T05:31:56Z"
        }
      ],
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "page": 123,
  "per_page": 123,
  "total": 123
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

クエリパラメータ

page
integer

返される結果のページ index。最初のページは 0 です。

per_page
integer

1 ページあたりの結果数。パラメーターが送信されない場合、ページングは無効になります。

レスポンス

Action Module を取得しました。

modules
object[]

ActionsModule オブジェクトのリスト。

page
integer

返された結果のページインデックス。

per_page
integer

1 ページあたりに要求された結果数。

total
integer

テナント内のモジュールの総数。