CreditsCreate credits checkout session

Create credits checkout session

Create an embedded Stripe checkout session for a credit purchase. Provide planId, or both customAmount and customCredits (customAmount minimum 99).

curl -X POST "https://api.talkturo.com/api/credits/checkout" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (tk_live_ or tk_test_)" \
  -d '{
  "accountId": "example_string",
  "accountSlug": "example_string",
  "planId": "example_string",
  "customAmount": 3.14,
  "customCredits": 3.14,
  "customerId": "example_string",
  "customerEmail": "user@example.com",
  "toltReferral": "example_string"
}'
{
  "success": true,
  "checkoutToken": "example_string",
  "sessionId": "example_string",
  "credits": 3.14,
  "amount": 3.14
}
POST
/credits/checkout
POST
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (tk_live_ or tk_test_)
Bearer Tokenstring
Required

Talkturo API key. Send as Authorization: Bearer tk_live_... or Authorization: Bearer tk_test_.... Default scope is *; rate limit defaults to 1000 requests per hour.

Talkturo API key. Send as Authorization: Bearer tk_live_... or Authorization: Bearer tk_test_.... Default scope is *; rate limit defaults to 1000 requests per hour.
API Key (cookie: sb-access-token)
sb-access-tokenstring
Required

Authenticated Talkturo web session cookie (Supabase httpOnly session). Browser clients typically send this automatically after sign-in. Related refresh cookies may also be present depending on the client.

Authenticated Talkturo web session cookie (Supabase httpOnly session). Browser clients typically send this automatically after sign-in. Related refresh cookies may also be present depending on the client.
Content-Typestring
Required

The media type of the request body

Options: application/json
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (tk_live_ or tk_test_). Talkturo API key. Send as Authorization: Bearer tk_live_... or Authorization: Bearer tk_test_.... Default scope is *; rate limit defaults to 1000 requests per hour.

path
parameterstring
Required

API Key for authentication. Authenticated Talkturo web session cookie (Supabase httpOnly session). Browser clients typically send this automatically after sign-in. Related refresh cookies may also be present depending on the client.

Responses

successboolean
checkoutTokenstring
sessionIdstring
creditsnumber
amountnumber