curl --request POST \
--url http://localhost:3000/billing/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orgId": "<string>",
"productId": "<string>",
"priceId": "<string>"
}
'{
"statusCode": 123,
"message": "OK",
"data": {
"url": "<string>",
"message": "<string>"
}
}curl --request POST \
--url http://localhost:3000/billing/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orgId": "<string>",
"productId": "<string>",
"priceId": "<string>"
}
'{
"statusCode": 123,
"message": "OK",
"data": {
"url": "<string>",
"message": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.