GET
/
customers
/
authorization
/
{id}
curl --request GET \
  --url https://api.sulu.sh/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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier for the authorization session.

Response

200
application/json
Authorization session status retrieved successfully
id
string
email
string
merchantId
string
merchantName
string
planId
string
planName
string
redirectUrl
string
status
enum<string>
Available options:
pending,
completed,
expired
expiresAt
string
customerId
string
url
string