GET
/
automation
/
v4
/
actions
/
{appId}
/
{definitionId}
/
revisions
特定の定義の変更履歴を取得
curl --request GET \
  --url https://api.hubapi.com/automation/v4/actions/{appId}/{definitionId}/revisions
{
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "revisionId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "definition": {
        "functions": [
          {
            "functionType": "PRE_ACTION_EXECUTION",
            "id": "<string>"
          }
        ],
        "actionUrl": "<string>",
        "published": true,
        "labels": {},
        "inputFields": [
          {
            "isRequired": true,
            "automationFieldType": "<string>",
            "typeDefinition": {
              "helpText": "<string>",
              "referencedObjectType": "CONTACT",
              "name": "<string>",
              "options": [
                {
                  "hidden": "<any>",
                  "displayOrder": "<any>",
                  "doubleData": "<any>",
                  "description": "<any>",
                  "readOnly": "<any>",
                  "label": "<any>",
                  "value": "<any>"
                }
              ],
              "description": "<string>",
              "externalOptionsReferenceType": "<string>",
              "label": "<string>",
              "type": "string",
              "fieldType": "booleancheckbox",
              "optionsUrl": "<string>",
              "externalOptions": true
            },
            "supportedValueTypes": [
              "STATIC_VALUE"
            ]
          }
        ],
        "outputFields": [
          {
            "typeDefinition": {
              "helpText": "<string>",
              "referencedObjectType": "CONTACT",
              "name": "<string>",
              "options": [
                {
                  "hidden": "<any>",
                  "displayOrder": "<any>",
                  "doubleData": "<any>",
                  "description": "<any>",
                  "readOnly": "<any>",
                  "label": "<any>",
                  "value": "<any>"
                }
              ],
              "description": "<string>",
              "externalOptionsReferenceType": "<string>",
              "label": "<string>",
              "type": "string",
              "fieldType": "booleancheckbox",
              "optionsUrl": "<string>",
              "externalOptions": true
            }
          }
        ],
        "revisionId": "<string>",
        "archivedAt": 123,
        "inputFieldDependencies": [
          {
            "dependencyType": "SINGLE_FIELD",
            "controllingFieldName": "<string>",
            "dependentFieldNames": [
              "<string>"
            ]
          }
        ],
        "executionRules": [
          {
            "labelName": "<string>",
            "conditions": {}
          }
        ],
        "id": "<string>",
        "objectTypes": [
          "<string>"
        ],
        "objectRequestOptions": {
          "properties": [
            "<string>"
          ]
        }
      },
      "id": "<string>"
    }
  ]
}
サポートされる製品
次のいずれかの製品またはそれ以上が必要です。
Marketing Hub
Marketing HubProfessional
Sales Hub
Sales HubProfessional
Service Hub
Service HubProfessional
Content Hub
Content Hub無料ツール

Authorizations

hapikey
string
query
required

Path Parameters

definitionId
string
required

定義のID。

appId
integer
required

アプリのID。

Query Parameters

limit
integer

ページごとに表示する結果の最大数。

after
string

最後に正常に読み取られたリソースのページ操作カーソルトークンは、より多くの結果を含むページ付きレスポンスのpaging.next.after JSONプロパティーとして返されます。

Response

successful operation

results
object[]
required
paging
object