curl --request PATCH \
--url https://api.paygentic.io/v0/customers/authorization/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "pending",
"customerId": "<string>"
}'
{
"id": "<string>",
"status": "pending"
}
curl --request PATCH \
--url https://api.paygentic.io/v0/customers/authorization/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "pending",
"customerId": "<string>"
}'
{
"id": "<string>",
"status": "pending"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier for the authorization session.
Authorization session updated successfully
The response is of type object
.