メインコンテンツへスキップ
POST
/
automation
/
sequences
/
2026-03
/
enrollments
コンタクトをシーケンスに登録
curl --request POST \
  --url https://api.hubapi.com/automation/sequences/2026-03/enrollments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "<string>",
  "senderEmail": "<string>",
  "sequenceId": "<string>",
  "senderAliasAddress": "<string>"
}
'
{
  "enrolledAt": "2023-11-07T05:31:56Z",
  "id": "<string>",
  "toEmail": "<string>",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.jp/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

承認

Authorization
string
header
必須

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

クエリパラメータ

userId
string
必須

登録を実行するユーザーの一意の識別子です。このパラメーターは必須です。

ボディ

application/json
contactId
string
必須

シーケンスに登録するコンタクトの固有ID。

senderEmail
string
必須

コンタクトをシーケンスに登録する送信者のEメールアドレス。

sequenceId
string
必須

コンタクトが登録されるシーケンスの固有ID。

senderAliasAddress
string

コンタクトの登録時に送信者が使用したエイリアスEメールアドレス。

レスポンス

successful operation

enrolledAt
string<date-time>
必須

コンタクトがシーケンスに登録された日時。

id
string
必須

シーケンス登録の固有ID。

toEmail
string
必須

シーケンスに登録されたコンタクトのEメールアドレス。

updatedAt
string<date-time>
必須

シーケンス登録が最後に更新された日時。

Last modified on April 13, 2026