Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
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>"
}'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>"
}'Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.