curl --request POST \
--url https://api.hyperline.co/v1/integrations/components/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>"
}'
{
"token": "<string>",
"token_type": "bearer"
}
Create a new token for embedded components.
curl --request POST \
--url https://api.hyperline.co/v1/integrations/components/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>"
}'
{
"token": "<string>",
"token_type": "bearer"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Create component token payload
The body is of type object
.
The newly created token
The response is of type object
.
Was this page helpful?