Zum Hauptinhalt springen
GET
/
automation
/
v4
/
flows
ワークフローを取得
curl --request GET \
  --url https://api.hubapi.com/automation/v4/flows \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "revisionId": "<string>",
      "createdAt": "2024-01-08T17:00:52.832+00:00",
      "objectTypeId": "0-1",
      "isEnabled": false,
      "name": "My example workfow",
      "id": "101",
      "uuid": "my-test-workflow-01",
      "flowType": "<string>",
      "updatedAt": "2024-02-26T19:59:04.618+00:00"
    }
  ]
}
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub -無料ツール
Sales HubSales Hub -無料ツール
Service HubService Hub -無料ツール
Content HubContent Hub -無料ツール
この API には、次のいずれかのスコープが必要です。
automation

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

after
string

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

limit
integer
default:100

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

Response

successful operation

results
object[]
required
paging
object
I