curl --request GET \
--url https://api.paygentic.io/v0/customers/authorization/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"email": "<string>",
"merchantId": "<string>",
"merchantName": "<string>",
"planId": "<string>",
"planName": "<string>",
"redirectUrl": "<string>",
"status": "pending",
"expiresAt": "2023-11-07T05:31:56Z",
"customerId": "<string>",
"url": "<string>"
}
curl --request GET \
--url https://api.paygentic.io/v0/customers/authorization/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"email": "<string>",
"merchantId": "<string>",
"merchantName": "<string>",
"planId": "<string>",
"planName": "<string>",
"redirectUrl": "<string>",
"status": "pending",
"expiresAt": "2023-11-07T05:31:56Z",
"customerId": "<string>",
"url": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The unique identifier for the authorization session.
Authorization session status retrieved successfully
The response is of type object
.