Create Stripe Customer Portal session
POST
/organization/{id}/billing/portal
Returns the portal URL where the customer changes plan, payment method, or cancels. Requires `billing:manage` and an existing Stripe customer — before the first Checkout this answers `no_stripe_customer`. A request from a country Elaichi cannot sell to answers `403 region_unavailable`.
Path Parameters
idstring
required·
Organization id (org_…).
Response Body
urlstring · uri
curl -X POST 'https://api.elaichi.ai/organization/<id>/billing/portal' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/organization/<id>/billing/portal', {
method: 'POST',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/organization/<id>/billing/portal"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.post(url, headers=headers)
print(response.json())