curl --request GET \
--url https://api.hyperline.co/v1/customers/{id}/portal \
--header 'Authorization: Bearer <token>'
{
"url": "<string>"
}
Retrieve the URL of the customer portal.
curl --request GET \
--url https://api.hyperline.co/v1/customers/{id}/portal \
--header 'Authorization: Bearer <token>'
{
"url": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?