curl --request GET \
--url https://api.cal.com/v2/stripe/connect \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": {
"authUrl": "<string>"
}
}
curl --request GET \
--url https://api.cal.com/v2/stripe/connect \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": {
"authUrl": "<string>"
}
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
The response is of type object
.
Was this page helpful?