メインコンテンツへスキップ
POST
/
visitor-identification
/
v3
/
tokens
/
create
訪問者トークンを生成
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

承認

Authorization
string
header
必須

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

ボディ

application/json
email
string
必須

特定する訪問者のEメールアドレス

firstName
string

特定する訪問者の名。この値は新規コンタクトおよび名の値がない既存のコンタクトについてのみHubSpotで設定されます。必須ではありません。

lastName
string

特定する訪問者の姓。この値は新規コンタクトおよび姓の値がない既存のコンタクトについてのみHubSpotで設定されます。必須ではありません。

レスポンス

successful operation

token
string
必須

訪問者を判明しているコンタクトとして扱えるようにする特定トークン。

Last modified on April 13, 2026