curl --request GET \
--url https://api.hubapi.com/events/v3/events/ \
--header 'Authorization: Bearer <token>'{
"results": [
{
"eventType": "<string>",
"id": "<string>",
"objectId": "<string>",
"objectType": "<string>",
"occurredAt": "2023-11-07T05:31:56Z",
"properties": {}
}
],
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
},
"prev": {
"before": "<string>",
"link": "<string>"
}
}
}このエンドポイントを使用することで、フィルター条件を使用してイベントインスタンスを照会できます。
curl --request GET \
--url https://api.hubapi.com/events/v3/events/ \
--header 'Authorization: Bearer <token>'{
"results": [
{
"eventType": "<string>",
"id": "<string>",
"objectId": "<string>",
"objectType": "<string>",
"occurredAt": "2023-11-07T05:31:56Z",
"properties": {}
}
],
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
},
"prev": {
"before": "<string>",
"link": "<string>"
}
}
}サポートされる製品
必須スコープ
The access token received from the authorization server in the OAuth 2.0 flow.
前回正常に読み取られたリソースのページ設定カーソルトークンが、その他の結果が含まれるページ設定されたレスポンスの「paging.next.after」JSONプロパティーとして返されます。
Paging cursor token from paging.prev.before in a previous response. Use to retrieve the previous page of results.
イベントタイプ名。使用可能なイベントタイプ名のリストは別のAPI呼び出しから取得できます。
イベントインスタンスのID。IDはイベントインスタンスと1対1です。このフィルターと追加のフィルターを指定する場合は、他のフィルターがイベントインスタンスの値と一致していないと結果が得られません。
ページごとに表示する結果の最大数。
イベントインスタンスの絞り込みの基準となるCRMオブジェクトのID。objectIdに基づいて絞り込む場合は、objectTypeも指定する必要があります。
Filter events by a property on the associated CRM object. Replace {propname} with the property name (e.g. objectProperty.email=user@example.com). Multiple filters are ANDed together.
イベントインスタンスの絞り込みの基準となるCRMオブジェクトタイプ名。必要に応じて、別のパラメーターでobjectIdも指定して特定のCRMオブジェクトインスタンスに絞り込むこともできます。
Return only events that occurred after this timestamp, in ISO 8601 format (e.g. 2024-01-01T00:00:00Z).
Return only events that occurred before this timestamp, in ISO 8601 format (e.g. 2024-12-31T23:59:59Z).
Filter events by a property on the event itself. Replace {propname} with the event property name. Multiple values for the same property are ORed; multiple properties are ANDed. Requires eventType to be set.
イベントインスタンスのタイムスタンプに基づく並べ替えの方向で、昇順または降順。