curl --request POST \
--url https://api.hubapi.com/visitor-identification/v3/tokens/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}
'{
"token": "<string>"
}独自のシステムを使用して認証されたウェブサイト訪問者の特定トークンを生成します。このAPIから返される特定トークンを使用して、すでに認証済みの訪問者が判明しているコンタクトとして扱われるように、その訪問者に関する情報をチャットウィジェットに渡すことができます。これにより、サポートエージェントは訪問者をより効果的に認識して支援できます。
curl --request POST \
--url https://api.hubapi.com/visitor-identification/v3/tokens/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}
'{
"token": "<string>"
}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
Required Scopes
The access token received from the authorization server in the OAuth 2.0 flow.
successful operation
訪問者を判明しているコンタクトとして扱えるようにする特定トークン。