Skip to main content
POST
/
stripe
/
customer_portal_session
cURL
curl --request POST \
  --url https://backend.clipvision.ai/stripe/customer_portal_session \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": "<string>",
  "return_url": "<string>"
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
customer_id
string
required
Minimum string length: 1
return_url
string
required
Minimum string length: 1

Response