> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# バインディングを更新

> トリガーにバインド（つまりアタッチ）されている Actions を更新します。Action は作成してデプロイした後、フローの一部として実行されるようにトリガーにアタッチ（つまりバインド）する必要があります。Actions を指定した順序で実行されます。


export const Scopes = ({scopes = []}) => {
  return <div>
      <div class="api-section-heading flex flex-col gap-y-4 w-full">
        <div class="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 class="api-section-heading-title flex-1 mb-0">Scopes</h4>
          <div class="flex items-center"></div>
        </div>
      </div>
      <div class="mt-4">
        <div class="space-y-4 whitespace-normal prose prose-sm prose-gray dark:prose-invert overflow-wrap-anywhere [&_*]:overflow-wrap-anywhere">
          <p class="whitespace-pre-line text-xs">
            {"スコープは、APIリクエストと認証トークンの権限およびアクセスレベルを定義します。"}
          </p>
        </div>
      </div>
      <div class="flex font-mono text-sm group/param-head param-head break-all relative mt-6" id="scopes-scopes">
        <div class="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div class="flex items-center flex-wrap gap-2">
            <div class="absolute -top-1.5">
              <a href="#scopes-scopes" class="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="見出しに移動">
                ​
                <div class="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            {scopes.map((scope, index) => {
    return <span class="flex items-center px-2 py-0.5 rounded-md bg-gray-100/50 dark:bg-white/5 text-gray-600 dark:text-gray-200 font-medium break-all" style={{
      lineHeight: "1rem",
      fontSize: "0.75rem",
      fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
    }} data-component-part="field-info-pill" key={index}>
                  {scope}
                </span>;
  })}
          </div>
        </div>
      </div>
    </div>;
};

export const ApiReleaseLifecycle = ({releaseLifecycle = "GA"}) => {
  const lifecycleMap = {
    ea: "早期アクセス",
    ga: "一般提供",
    deprecated: "非推奨",
    planned: "計画中",
    beta: "ベータ"
  };
  const LIFECYCLE_THEMES = {
    info: {
      light: {
        bg: "lab(91.896% .077188 -6.94053)",
        text: "lab(36.091% 25.9241 -68.0384)"
      },
      dark: {
        bg: "lab(16.0426% 6.71726 -27.2409)",
        text: "lab(72.6029% 4.08953 -41.9669)"
      }
    },
    secondary: {
      light: {
        bg: "lab(90.8548% 11.3355 8.01476)",
        text: "lab(47.5286% 56.4238 43.4706)"
      },
      dark: {
        bg: "lab(16.3609% 37.191 25.6346)",
        text: "lab(71.881% 41.5 29.4839)"
      }
    },
    danger: {
      light: {
        bg: "lab(94.7916% -.0000298023 0)",
        text: "lab(54.3656% 0 -.0000119209)"
      },
      dark: {
        bg: "lab(13.232% 0 0)",
        text: "lab(51.6164% 0 0)"
      }
    }
  };
  const LIFECYCLE_THEME_MAP = {
    ea: "info",
    ga: "info",
    beta: "info",
    deprecated: "secondary",
    planned: "danger"
  };
  const lifecycle = releaseLifecycle.toLocaleLowerCase();
  const lifecycleText = lifecycleMap[lifecycle];
  if (!lifecycleText) {
    return null;
  }
  const theme = LIFECYCLE_THEMES[LIFECYCLE_THEME_MAP[lifecycle]];
  return <div>
      <div className="api-section-heading flex flex-col gap-y-4 w-full">
        <div className="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 className="api-section-heading-title flex-1 mb-0">リリースライフサイクル</h4>
        </div>
      </div>
      <div className="flex font-mono text-sm group/param-head param-head break-all relative mt-2.5" id="releaselifecycle-lifecycle">
        <div className="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div className="flex items-center flex-wrap gap-2">
            <div className="absolute -top-1.5">
              <a href="#releaselifecycle-lifecycle" className="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="ヘッダーに移動">
                <div className="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            <span className="inline-flex items-center w-fit font-medium gap-1 py-0.5 px-2 rounded-md" style={{
    lineHeight: "1rem",
    fontSize: "0.75rem",
    fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
    backgroundColor: `light-dark(${theme.light.bg}, ${theme.dark.bg})`,
    color: `light-dark(${theme.light.text}, ${theme.dark.text})`,
    borderColor: `light-dark(color-mix(in oklab, ${theme.light.text} 25%, transparent), color-mix(in oklab, ${theme.dark.text} 25%, transparent))`
  }}>
              {lifecycleText}
            </span>
          </div>
        </div>
      </div>
    </div>;
};

<ApiReleaseLifecycle releaseLifecycle="GA" />

<Scopes scopes={["update:actions"]} />


## OpenAPI

````yaml ja/docs/oas/management/v2/management-api-oas.json PATCH /actions/triggers/{triggerId}/bindings
openapi: 3.1.0
info:
  contact:
    name: Auth0 Support
    url: https://support.auth0.com
  description: Auth0 Management API v2。
  termsOfService: https://auth0.com/web-terms/
  title: Auth0 Management API
  version: '2.0'
servers:
  - url: https://{tenantDomain}/api/v2
    variables:
      tenantDomain:
        default: '{TENANT}.auth0.com'
        description: Auth0 テナントドメイン
security:
  - bearerAuth: []
externalDocs:
  description: Auth0 Management API ドキュメント
  url: https://auth0.com/docs/api/management/v2/
paths:
  /actions/triggers/{triggerId}/bindings:
    patch:
      tags:
        - actions
      summary: トリガーのバインディングを更新
      description: >
        トリガーにバインド（つまりアタッチ）されている Actions を更新します。Action
        は作成してデプロイした後、フローの一部として実行されるようにトリガーにアタッチ（つまりバインド）する必要があります。Actions
        を指定した順序で実行されます。
      operationId: patch_bindings
      parameters:
        - description: Actions の拡張ポイントです。
          in: path
          name: triggerId
          required: true
          schema:
            $ref: '#/components/schemas/ActionTriggerTypeEnum'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateActionBindingsRequestContent'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UpdateActionBindingsRequestContent'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateActionBindingsResponseContent'
          description: バインディングを更新しました。
        '400':
          description: 無効なリクエストボディです。
          x-description-1: Invalid request URI. The message will vary depending on the cause.
        '401':
          description: 無効なトークンです。
          x-description-1: Invalid signature received for JSON Web Token validation.
        '403':
          description: 'スコープが不足しています。必要なスコープ: update:actions。'
        '429':
          description: >-
            リクエストが多すぎます。X-RateLimit-Limit、X-RateLimit-Remaining、X-RateLimit-Reset
            ヘッダーを確認してください。
      security:
        - bearerAuth: []
        - oAuth2ClientCredentials:
            - update:actions
      x-codeSamples:
        - label: Update trigger bindings
          lang: go
          source: |
            package example

            import (
                context "context"

                triggers "github.com/auth0/go-auth0/management/management/actions/triggers"
                client "github.com/auth0/go-auth0/management/management/client"
                option "github.com/auth0/go-auth0/management/management/option"
            )

            func do() {
                client := client.NewClient(
                    option.WithToken(
                        "<token>",
                    ),
                )
                request := &triggers.UpdateActionBindingsRequestContent{}
                client.Actions.Triggers.Bindings.UpdateMany(
                    context.TODO(),
                    "triggerId",
                    request,
                )
            }
        - label: Update trigger bindings
          lang: typescript
          source: |
            import { ManagementClient } from "auth0";

            async function main() {
                const client = new ManagementClient({
                    token: "<token>",
                });
                await client.actions.triggers.bindings.updateMany("triggerId", {});
            }
            main();
        - label: Update trigger bindings
          lang: javascript
          source: |
            import { ManagementClient } from "auth0";

            async function main() {
                const client = new ManagementClient({
                    token: "<token>",
                });
                await client.actions.triggers.bindings.updateMany("triggerId", {});
            }
            main();
components:
  schemas:
    ActionTriggerTypeEnum:
      description: Actions の拡張ポイント。
      enum:
        - post-login
        - credentials-exchange
        - pre-user-registration
        - post-user-registration
        - post-change-password
        - send-phone-message
        - custom-phone-provider
        - custom-email-provider
        - password-reset-post-challenge
        - custom-token-exchange
        - event-stream
        - password-hash-migration
        - login-post-identifier
        - signup-post-identifier
      type: string
    UpdateActionBindingsRequestContent:
      additionalProperties: false
      properties:
        bindings:
          description: このトリガーに関連付けられる Action。記載されている順序で実行されます。
          items:
            $ref: '#/components/schemas/UpdateActionBindingItem'
          type: array
      type: object
    UpdateActionBindingsResponseContent:
      additionalProperties: false
      properties:
        bindings:
          items:
            $ref: '#/components/schemas/ActionBinding'
          type: array
      type: object
    UpdateActionBindingItem:
      oneOf:
        - $ref: '#/components/schemas/ActionBindingWithRef'
    ActionBinding:
      additionalProperties: false
      description: Binding は、トリガーと Action を関連付ける関連エンティティです。
      properties:
        action:
          $ref: '#/components/schemas/Action'
        created_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このBindingが作成された時刻。
          format: date-time
          type: string
        display_name:
          default: my-action-1
          description: このBindingの名前。
          type: string
        id:
          default: 4a881e22-0562-4178-bc91-b0f2b321dc13
          description: このBindingの一意のID。
          type: string
        trigger_id:
          $ref: '#/components/schemas/ActionTriggerTypeEnum'
        updated_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このBindingが更新された時刻。
          format: date-time
          type: string
      type: object
    ActionBindingWithRef:
      additionalProperties: false
      properties:
        display_name:
          default: my-action-1
          description: このBindingの名前。
          type: string
        ref:
          $ref: '#/components/schemas/ActionBindingRef'
        secrets:
          description: Action または Action のバージョンに含まれるシークレットの一覧。
          items:
            $ref: '#/components/schemas/ActionSecretRequest'
          type: array
      required:
        - ref
      type: object
    Action:
      additionalProperties: false
      properties:
        all_changes_deployed:
          default: false
          description: Action の内容がすべてデプロイ済みである場合は true。
          type: boolean
        built_at:
          default: '2021-01-01T00:00:00.000Z'
          description: この Action のビルドが正常に完了した時刻。
          format: date-time
          type: string
        code:
          default: module.exports = () => {}
          description: Action のソースコード。
          type: string
        created_at:
          default: '2021-01-01T00:00:00.000Z'
          description: この Action が作成された時刻。
          format: date-time
          type: string
        dependencies:
          description: この Action が依存するサードパーティ製 npm モジュールとそのバージョンの一覧。
          items:
            $ref: '#/components/schemas/ActionVersionDependency'
          type: array
        deploy:
          default: false
          description: 作成後に Action をデプロイする場合は true。
          type: boolean
        deployed_version:
          $ref: '#/components/schemas/ActionDeployedVersion'
        id:
          default: 910b1053-577f-4d81-a8c8-020e7319a38a
          description: Action の一意の ID。
          type: string
        installed_integration_id:
          default: 7d2bc0c9-c0c2-433a-9f4e-86ef80270aad
          description: installed_integration_id は InstalledIntegration エンティティへの外部キー参照です。
          type: string
        integration:
          $ref: '#/components/schemas/Integration'
        modules:
          description: この Action で使用される Action Module とそのバージョンの一覧。
          items:
            $ref: '#/components/schemas/ActionModuleReference'
          type: array
        name:
          default: my-action
          description: Action の名前。
          type: string
        runtime:
          default: node22
          description: 'Node ランタイム。例: `node22`、デフォルトは `node22`'
          type: string
        secrets:
          description: Action またはそのバージョンに含まれるシークレットの一覧。
          items:
            $ref: '#/components/schemas/ActionSecretResponse'
          type: array
        status:
          $ref: '#/components/schemas/ActionBuildStatusEnum'
        supported_triggers:
          description: この Action がサポートするトリガーの一覧。現時点では、Action は一度に 1 つのトリガーのみを対象にできます。
          items:
            $ref: '#/components/schemas/ActionTrigger'
            x-release-lifecycle: GA
          minItems: 1
          type: array
        updated_at:
          default: '2021-01-01T00:00:00.000Z'
          description: この Action が更新された時刻。
          format: date-time
          type: string
      type: object
    ActionBindingRef:
      additionalProperties: true
      description: Action への参照。Action は ID または名前で参照できます。
      properties:
        type:
          $ref: '#/components/schemas/ActionBindingRefTypeEnum'
        value:
          default: my-action
          description: トリガーにバインドされるActionのidまたは名前。
          type: string
      type: object
    ActionSecretRequest:
      additionalProperties: true
      properties:
        name:
          default: mySecret
          description: '対象のシークレットの名前。例: API_KEY。'
          type: string
        value:
          default: mySecretValue
          description: >-
            対象のシークレットの値。例: secret123。シークレットの値を設定できるのは作成時のみです。シークレットの値が API
            から返されることはありません。
          type: string
      type: object
    ActionVersionDependency:
      additionalProperties: false
      description: >-
        Dependency は npm モジュールです。これらの値は不変のアーティファクトを生成するために使用され、その結果は layer_id
        として表されます。
      properties:
        name:
          description: 'name は npm モジュールの名前です（例: lodash）。'
          type: string
        registry_url:
          description: registry_url は省略可能な値で、主にプライベート npm レジストリで使用されます。
          type: string
        version:
          description: 'description は npm モジュールのバージョンです（例: 4.17.1）。'
          type: string
      type: object
    ActionDeployedVersion:
      additionalProperties: false
      description: 現在デプロイされているActionのバージョン。
      properties:
        action:
          $ref: '#/components/schemas/ActionBase'
        action_id:
          default: 910b1053-577f-4d81-a8c8-020e7319a38a
          description: このバージョンが属するActionのid。
          type: string
        built_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このバージョンのビルドが正常に完了した時刻。
          format: date-time
          type: string
        code:
          default: module.exports = () => {}
          description: このActionの特定のバージョンのソースコード。
          type: string
        created_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このバージョンが作成された時刻。
          format: date-time
          type: string
        dependencies:
          description: この特定のバージョンが依存するサードパーティ製 npm モジュールとそのバージョンの一覧。
          items:
            $ref: '#/components/schemas/ActionVersionDependency'
          type: array
        deployed:
          default: true
          description: この特定のバージョンが現在デプロイされているバージョンかどうかを示します。
          type: boolean
        errors:
          description: このバージョンのビルド中に発生したエラー。
          items:
            $ref: '#/components/schemas/ActionError'
          type: array
        id:
          default: 12a3b9e6-06e6-4a29-96bf-90c82fe79a0d
          description: Action バージョンの一意のid。
          type: string
        modules:
          description: このActionバージョンで使用される Action Module とそのバージョンの一覧。
          items:
            $ref: '#/components/schemas/ActionModuleReference'
          type: array
        number:
          default: 1
          description: Action のバージョン一覧における、このバージョンのインデックス。
          type: number
        runtime:
          default: node22
          description: 'Node ランタイム。例: `node22`'
          type: string
        secrets:
          description: Action または Action のバージョンに含まれるシークレットの一覧。
          items:
            $ref: '#/components/schemas/ActionSecretResponse'
          type: array
        status:
          $ref: '#/components/schemas/ActionVersionBuildStatusEnum'
        supported_triggers:
          description: このバージョンがサポートするトリガーの一覧。現時点では、1つのバージョンで対象にできるトリガーは同時に1つだけです。
          items:
            $ref: '#/components/schemas/ActionTrigger'
            x-release-lifecycle: GA
          minItems: 1
          type: array
        updated_at:
          default: '2021-01-01T00:00:00.000Z'
          description: >-
            このバージョンが更新された時刻。バージョンが外部から更新されることはありません。Action バージョンのビルド中に更新するのは
            Auth0 のみです。
          format: date-time
          type: string
      type: object
    Integration:
      additionalProperties: false
      description: |-
        統合は、パートナーが公開する自己完結型の機能単位を定義します。
        パートナーは、このような統合を1つまたは複数作成できます。
      properties:
        catalog_id:
          default: awesome-auth0-integration
          description: catalog_id は、マーケットプレイスカタログ内のIDを指します
          type: string
        created_at:
          default: '2021-06-21T15:47:29.072Z'
          format: date-time
          type: string
        current_release:
          $ref: '#/components/schemas/IntegrationRelease'
        description:
          default: An awesome Auth0 integration
          description: description は統合名に関する追加の説明テキストで、マーケットプレイスの掲載にも使用されます。
          type: string
        feature_type:
          $ref: '#/components/schemas/IntegrationFeatureTypeEnum'
        id:
          default: 8e9fe2d0-a2fc-4c8c-9e35-dae5afadb70b
          description: >-
            id
            はシステムによって生成されるGUIDです。この同じIDは、該当するすべてのローカリティでフェデレーションされるよう設計されています。
          type: string
        logo:
          type: string
        name:
          default: Example Auth0 integration
          description: |-
            name は統合名で、マーケットプレイスでの表示に使用されます。

            まず、表示名が3文字以上であることを確認します。これは後で簡単に調整できます。
          type: string
        partner_id:
          default: b8575c12-8d9d-4b5c-b28e-671fe9d39029
          description: |-
            partner_id は、この
            統合が属するパートナーアカウントへの外部キー参照です。
          type: string
        privacy_policy_url:
          type: string
        public_support_link:
          type: string
        short_description:
          default: Awesome Auth0 integration
          description: short_description は統合の簡潔な説明で、カードでの表示に使用されます
          type: string
        terms_of_use_url:
          type: string
        updated_at:
          default: '2021-06-21T15:47:29.072Z'
          format: date-time
          type: string
        url_slug:
          default: awesome-auth0-integration-slug
          description: url_slug は、マーケットプレイスカタログ内の url_slug を指します
          type: string
      type: object
    ActionModuleReference:
      additionalProperties: false
      description: Action で使用されるモジュールとそのバージョンへの参照。
      properties:
        module_id:
          description: モジュールの一意の ID。
          type: string
        module_name:
          description: モジュールの名前。
          type: string
        module_version_id:
          description: 特定のモジュールバージョンの ID。
          type: string
        module_version_number:
          description: モジュールのバージョン番号。
          type: integer
      type: object
    ActionSecretResponse:
      additionalProperties: true
      properties:
        name:
          default: mySecret
          description: '対象のシークレットの名前。例: API_KEY。'
          type: string
        updated_at:
          default: '2021-01-01T00:00:00.000Z'
          description: シークレットが最後に更新された日時。
          format: date-time
          type: string
      type: object
    ActionBuildStatusEnum:
      default: built
      description: このActionのビルドステータス。
      enum:
        - pending
        - building
        - packaged
        - built
        - retrying
        - failed
      type: string
    ActionTrigger:
      additionalProperties: false
      properties:
        binding_policy:
          $ref: '#/components/schemas/ActionBindingTypeEnum'
        compatible_triggers:
          description: compatible_triggers は、同じ event と api をサポートする他のトリガーを示します。
          items:
            $ref: '#/components/schemas/ActionTriggerCompatibleTrigger'
          type: array
        default_runtime:
          description: Action の作成時に指定されなかった場合に使用されるランタイム。
          type: string
        id:
          $ref: '#/components/schemas/ActionTriggerTypeEnum'
        runtimes:
          description: このトリガーでサポートされるランタイム。
          items:
            type: string
          type: array
        status:
          description: status はトリガーのステータスを示します。
          type: string
        version:
          description: トリガーのバージョン。v1、v2 など。
          type: string
      required:
        - id
      type: object
      x-release-lifecycle: GA
    ActionBindingRefTypeEnum:
      default: action_name
      description: 'Action の参照方法: `action_id` または `action_name`。'
      enum:
        - binding_id
        - action_id
        - action_name
      type: string
    ActionBase:
      additionalProperties: false
      description: このバージョンが属する Action。
      properties:
        all_changes_deployed:
          default: false
          description: Action の内容がすべてデプロイ済みである場合は true。
          type: boolean
        created_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このActionが作成された時刻。
          format: date-time
          type: string
        id:
          default: 910b1053-577f-4d81-a8c8-020e7319a38a
          description: Action の一意の ID。
          type: string
        name:
          default: my-action
          description: Action の名前。
          type: string
        supported_triggers:
          description: この Action がサポートするトリガーの一覧。現時点では、Action は一度に 1 つのトリガーのみを対象にできます。
          items:
            $ref: '#/components/schemas/ActionTrigger'
            x-release-lifecycle: GA
          minItems: 1
          type: array
        updated_at:
          default: '2021-01-01T00:00:00.000Z'
          description: このActionが更新された時刻。
          format: date-time
          type: string
      type: object
    ActionError:
      additionalProperties: false
      description: Error は汎用エラーであり、人が読める id を持ち、support ticket で容易に参照できる必要があります。
      properties:
        id:
          type: string
        msg:
          type: string
        url:
          type: string
      type: object
    ActionVersionBuildStatusEnum:
      default: built
      description: このバージョン固有のビルドステータス。
      enum:
        - pending
        - building
        - packaged
        - built
        - retrying
        - failed
      type: string
    IntegrationRelease:
      additionalProperties: true
      properties:
        id:
          description: 関連付けられた IntegrationRelease の id
          type: string
        required_configuration:
          description: required_configuration は、統合が機能するために必要なすべての設定フィールドを定義します。
          items:
            $ref: '#/components/schemas/IntegrationRequiredParam'
          type: array
        required_secrets:
          description: required_secrets は、統合が機能するために必要なすべてのシークレットを定義します。
          items:
            $ref: '#/components/schemas/IntegrationRequiredParam'
          type: array
        semver:
          $ref: '#/components/schemas/IntegrationSemVer'
        trigger:
          $ref: '#/components/schemas/ActionTrigger'
          x-release-lifecycle: GA
      type: object
    IntegrationFeatureTypeEnum:
      default: action
      description: feature_type は統合のタイプです。
      enum:
        - unspecified
        - action
        - social_connection
        - log_stream
        - sso_integration
        - sms_provider
      type: string
    ActionBindingTypeEnum:
      description: >-
        Action を実行するには、Binding を使用してトリガーにバインドする必要があります。`trigger-bound` は、Binding
        がテナントによって管理されることを意味します。`entity-bound` は、Binding が Auth0
        によって自動的に管理され、それらのBindingは他の内部リソースによって制御されることを意味します。テナントは `entity-bound`
        のBindingを管理できません。
      enum:
        - trigger-bound
        - entity-bound
      type: string
    ActionTriggerCompatibleTrigger:
      additionalProperties: true
      properties:
        id:
          $ref: '#/components/schemas/ActionTriggerTypeEnum'
        version:
          description: トリガーのバージョン。v1、v2 など。
          type: string
      required:
        - id
        - version
      type: object
    IntegrationRequiredParam:
      additionalProperties: false
      description: |-
        Param はフォームの入力値で、主に Actions のシークレットや設定値を指定する際に使用されます。

        これらは特にパートナー統合で重要ですが、テナント管理者がカスタムActionsをパラメーター化したい場合は、それらにも公開できます。
      properties:
        default_value:
          description: このパラメーターのデフォルト値。
          type: string
        description:
          description: このパラメーターの詳細な説明。
          type: string
        label:
          description: このパラメーターの短いラベル。
          type: string
        name:
          description: このパラメーターの名前。
          type: string
        optional:
          description: このパラメーターが必須かどうかを示す一時的なフラグ（試験運用機能。Labs 専用）。
          type: boolean
        options:
          description: このパラメーターで指定可能なオプション。
          items:
            $ref: '#/components/schemas/IntegrationRequiredParamOption'
          type: array
        placeholder:
          description: このパラメーターのプレースホルダーテキスト。
          type: string
        required:
          description: このパラメーターが必須かどうかを示すフラグ。
          type: boolean
        type:
          $ref: '#/components/schemas/IntegrationRequiredParamTypeEnum'
      type: object
    IntegrationSemVer:
      additionalProperties: false
      description: semver は、統合リリースの major.minor バージョンを表します
      properties:
        major:
          default: 1
          description: Major は semver のメジャー番号です
          type: integer
        minor:
          default: 1
          description: Minior は semver のマイナー番号です
          type: integer
      type: object
    IntegrationRequiredParamOption:
      additionalProperties: false
      properties:
        label:
          description: UI に表示するためのオプションの表示値。
          type: string
        value:
          description: アプリケーション内で使用されるオプションの値。
          type: string
      type: object
    IntegrationRequiredParamTypeEnum:
      enum:
        - UNSPECIFIED
        - STRING
      type: string
  securitySchemes:
    bearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http
    oAuth2ClientCredentials:
      flows:
        clientCredentials:
          scopes:
            create:actions: Create Actions
            create:authentication_methods: Create Authentication Methods
            create:client_credentials: Create Client Credentials
            create:client_grants: Create Client Grants
            create:clients: Create Clients
            create:connection_profiles: Create Connection Profiles
            create:connections: Create Connections
            create:connections_keys: Create Connections Keys
            create:current_user_device_credentials: Create Current User Device Credentials
            create:custom_domains: Create Custom Domains
            create:custom_signing_keys: Create Custom Signing Keys
            create:directory_provisionings: Create Directory Provisionings
            create:email_provider: Create Email Provider
            create:email_templates: Create Email Templates
            create:encryption_keys: Create Encryption Keys
            create:event_streams: Create Event Streams
            create:experimentation: Create Experimentation
            create:flows: Create Flows
            create:flows_vault_connections: Create Flows Vault Connections
            create:forms: Create Forms
            create:group_roles: Create Group Roles
            create:guardian_enrollment_tickets: Create Guardian Enrollment Tickets
            create:hooks: Create Hooks
            create:log_streams: Create Log Streams
            create:network_acls: Create Network Acls
            create:organization_client_grants: Create Organization Client Grants
            create:organization_connections: Create Organization Connections
            create:organization_discovery_domains: Create Organization Discovery Domains
            create:organization_group_roles: Create Organization Group Roles
            create:organization_invitations: Create Organization Invitations
            create:organization_member_roles: Create Organization Member Roles
            create:organization_members: Create Organization Members
            create:organizations: Create Organizations
            create:phone_providers: Create Phone Providers
            create:phone_templates: Create Phone Templates
            create:rate_limit_policies: Create Rate Limit Policies
            create:resource_servers: Create Resource Servers
            create:role_members: Create Role Members
            create:roles: Create Roles
            create:rules: Create Rules
            create:scim_config: Create Scim Config
            create:scim_token: Create Scim Token
            create:self_service_profiles: Create Self Service Profiles
            create:signing_keys: Create Signing Keys
            create:sso_access_tickets: Create Sso Access Tickets
            create:token_exchange_profiles: Create Token Exchange Profiles
            create:user_attribute_profiles: Create User Attribute Profiles
            create:user_tickets: Create User Tickets
            create:users: Create Users
            create:vdcs_templates: Create Vdcs Templates
            delete:actions: Delete Actions
            delete:anomaly_blocks: Delete Anomaly Blocks
            delete:authentication_methods: Delete Authentication Methods
            delete:branding: Delete Branding
            delete:client_credentials: Delete Client Credentials
            delete:client_grants: Delete Client Grants
            delete:clients: Delete Clients
            delete:connection_profiles: Delete Connection Profiles
            delete:connections: Delete Connections
            delete:current_user: Delete Current User
            delete:current_user_device_credentials: Delete Current User Device Credentials
            delete:custom_domains: Delete Custom Domains
            delete:custom_signing_keys: Delete Custom Signing Keys
            delete:device_credentials: Delete Device Credentials
            delete:directory_provisionings: Delete Directory Provisionings
            delete:email_provider: Delete Email Provider
            delete:encryption_keys: Delete Encryption Keys
            delete:event_streams: Delete Event Streams
            delete:experimentation: Delete Experimentation
            delete:federated_connections_tokens: Delete Federated Connections Tokens
            delete:flows: Delete Flows
            delete:flows_executions: Delete Flows Executions
            delete:flows_vault_connections: Delete Flows Vault Connections
            delete:forms: Delete Forms
            delete:grants: Delete Grants
            delete:group_roles: Delete Group Roles
            delete:groups: Delete Groups
            delete:guardian_enrollments: Delete Guardian Enrollments
            delete:hooks: Delete Hooks
            delete:log_streams: Delete Log Streams
            delete:network_acls: Delete Network Acls
            delete:organization_client_grants: Delete Organization Client Grants
            delete:organization_connections: Delete Organization Connections
            delete:organization_discovery_domains: Delete Organization Discovery Domains
            delete:organization_group_roles: Delete Organization Group Roles
            delete:organization_invitations: Delete Organization Invitations
            delete:organization_member_roles: Delete Organization Member Roles
            delete:organization_members: Delete Organization Members
            delete:organizations: Delete Organizations
            delete:phone_providers: Delete Phone Providers
            delete:phone_templates: Delete Phone Templates
            delete:rate_limit_policies: Delete Rate Limit Policies
            delete:refresh_tokens: Delete Refresh Tokens
            delete:resource_servers: Delete Resource Servers
            delete:role_members: Delete Role Members
            delete:roles: Delete Roles
            delete:rules: Delete Rules
            delete:rules_configs: Delete Rules Configs
            delete:scim_config: Delete Scim Config
            delete:scim_token: Delete Scim Token
            delete:self_service_profiles: Delete Self Service Profiles
            delete:sessions: Delete Sessions
            delete:sso_access_tickets: Delete Sso Access Tickets
            delete:token_exchange_profiles: Delete Token Exchange Profiles
            delete:user_attribute_profiles: Delete User Attribute Profiles
            delete:users: Delete Users
            delete:vdcs_templates: Delete Vdcs Templates
            read:actions: Read Actions
            read:anomaly_blocks: Read Anomaly Blocks
            read:attack_protection: Read Attack Protection
            read:authentication_methods: Read Authentication Methods
            read:branding: Read Branding
            read:client_credentials: Read Client Credentials
            read:client_grants: Read Client Grants
            read:client_keys: Read Client Keys
            read:client_summary: Read Client Summary
            read:clients: Read Clients
            read:connection_profiles: Read Connection Profiles
            read:connections: Read Connections
            read:connections_keys: Read Connections Keys
            read:current_user: Read Current User
            read:custom_domains: Read Custom Domains
            read:custom_signing_keys: Read Custom Signing Keys
            read:device_credentials: Read Device Credentials
            read:directory_provisionings: Read Directory Provisionings
            read:email_provider: Read Email Provider
            read:email_templates: Read Email Templates
            read:encryption_keys: Read Encryption Keys
            read:event_deliveries: Read Event Deliveries
            read:event_streams: Read Event Streams
            read:events: Read Events
            read:experimentation: Read Experimentation
            read:federated_connections_tokens: Read Federated Connections Tokens
            read:flows: Read Flows
            read:flows_executions: Read Flows Executions
            read:flows_vault_connections: Read Flows Vault Connections
            read:forms: Read Forms
            read:grants: Read Grants
            read:group_members: Read Group Members
            read:group_roles: Read Group Roles
            read:groups: Read Groups
            read:guardian_enrollments: Read Guardian Enrollments
            read:guardian_factors: Read Guardian Factors
            read:hooks: Read Hooks
            read:log_streams: Read Log Streams
            read:logs: Read Logs
            read:logs_users: Read Logs Users
            read:mfa_policies: Read Mfa Policies
            read:network_acls: Read Network Acls
            read:organization_client_grants: Read Organization Client Grants
            read:organization_connections: Read Organization Connections
            read:organization_discovery_domains: Read Organization Discovery Domains
            read:organization_group_roles: Read Organization Group Roles
            read:organization_groups: Read Organization Groups
            read:organization_invitations: Read Organization Invitations
            read:organization_member_effective_roles: Read Organization Member Effective Roles
            read:organization_member_role_source_groups: Read Organization Member Role Source Groups
            read:organization_member_roles: Read Organization Member Roles
            read:organization_members: Read Organization Members
            read:organizations: Read Organizations
            read:organizations_summary: Read Organizations Summary
            read:phone_providers: Read Phone Providers
            read:phone_templates: Read Phone Templates
            read:prompts: Read Prompts
            read:rate_limit_policies: Read Rate Limit Policies
            read:refresh_tokens: Read Refresh Tokens
            read:resource_servers: Read Resource Servers
            read:role_members: Read Role Members
            read:roles: Read Roles
            read:rules: Read Rules
            read:rules_configs: Read Rules Configs
            read:scim_config: Read Scim Config
            read:scim_token: Read Scim Token
            read:self_service_profile_custom_texts: Read Self Service Profile Custom Texts
            read:self_service_profiles: Read Self Service Profiles
            read:sessions: Read Sessions
            read:signing_keys: Read Signing Keys
            read:stats: Read Stats
            read:tenant_settings: Read Tenant Settings
            read:token_exchange_profiles: Read Token Exchange Profiles
            read:user_attribute_profiles: Read User Attribute Profiles
            read:user_effective_permissions: Read User Effective Permissions
            read:user_effective_roles: Read User Effective Roles
            read:user_idp_tokens: Read User Idp Tokens
            read:user_permission_source_roles: Read User Permission Source Roles
            read:user_role_source_groups: Read User Role Source Groups
            read:users: Read Users
            read:vdcs_templates: Read Vdcs Templates
            update:actions: Update Actions
            update:attack_protection: Update Attack Protection
            update:authentication_methods: Update Authentication Methods
            update:branding: Update Branding
            update:client_credentials: Update Client Credentials
            update:client_grants: Update Client Grants
            update:client_keys: Update Client Keys
            update:client_token_vault_privileged_access: Update Client Token Vault Privileged Access
            update:clients: Update Clients
            update:connection_profiles: Update Connection Profiles
            update:connections: Update Connections
            update:connections_keys: Update Connections Keys
            update:current_user_identities: Update Current User Identities
            update:current_user_metadata: Update Current User Metadata
            update:custom_domains: Update Custom Domains
            update:custom_signing_keys: Update Custom Signing Keys
            update:directory_provisionings: Update Directory Provisionings
            update:email_provider: Update Email Provider
            update:email_templates: Update Email Templates
            update:encryption_keys: Update Encryption Keys
            update:event_deliveries: Update Event Deliveries
            update:event_streams: Update Event Streams
            update:experimentation: Update Experimentation
            update:flows: Update Flows
            update:flows_vault_connections: Update Flows Vault Connections
            update:forms: Update Forms
            update:guardian_factors: Update Guardian Factors
            update:hooks: Update Hooks
            update:log_streams: Update Log Streams
            update:mfa_policies: Update Mfa Policies
            update:network_acls: Update Network Acls
            update:organization_connections: Update Organization Connections
            update:organization_discovery_domains: Update Organization Discovery Domains
            update:organizations: Update Organizations
            update:phone_providers: Update Phone Providers
            update:phone_templates: Update Phone Templates
            update:prompts: Update Prompts
            update:rate_limit_policies: Update Rate Limit Policies
            update:refresh_tokens: Update Refresh Tokens
            update:resource_servers: Update Resource Servers
            update:roles: Update Roles
            update:rules: Update Rules
            update:rules_configs: Update Rules Configs
            update:scim_config: Update Scim Config
            update:self_service_profile_custom_texts: Update Self Service Profile Custom Texts
            update:self_service_profiles: Update Self Service Profiles
            update:sessions: Update Sessions
            update:signing_keys: Update Signing Keys
            update:tenant_settings: Update Tenant Settings
            update:token_exchange_profiles: Update Token Exchange Profiles
            update:user_attribute_profiles: Update User Attribute Profiles
            update:users: Update Users
            update:users_app_metadata: Update Users App Metadata
            update:vdcs_templates: Update Vdcs Templates
          tokenUrl: /oauth/token/
          x-form-parameters:
            audience: /api/v2/
      type: oauth2

````