メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
actions
/
modules
/
{id}
/
actions
Actions Moduleを使用しているすべてのActionを一覧表示
curl --request GET \
  --url https://{tenantDomain}/api/v2/actions/modules/{id}/actions \
  --header 'Authorization: Bearer <token>'
{
  "actions": [
    {
      "action_id": "<string>",
      "action_name": "<string>",
      "module_version_id": "<string>",
      "module_version_number": 123,
      "supported_triggers": [
        {
          "compatible_triggers": [
            {
              "version": "<string>"
            }
          ],
          "default_runtime": "<string>",
          "runtimes": [
            "<string>"
          ],
          "status": "<string>",
          "version": "<string>"
        }
      ]
    }
  ],
  "page": 123,
  "per_page": 123,
  "total": 123
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

モジュールの一意の ID。

クエリパラメータ

page
integer

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

per_page
integer

1 ページあたりの結果数。

レスポンス

Action が取得されました。

actions
object[]

Action 参照の一覧。

page
integer

返された結果のページ番号。

per_page
integer

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

total
integer

このモジュールを使用している Actions の総数。