curl --request POST \
--url https://api.tensormesh.ai/v1/billing/stripe/payment-intents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"amount": {
"currencyCode": "<string>",
"units": "<string>",
"nanos": 123
},
"stripePaymentMethodId": "<string>"
}
'{
"stripePaymentIntentId": "<string>",
"clientSecret": "<string>"
}Creates a Stripe payment intent for a user.
curl --request POST \
--url https://api.tensormesh.ai/v1/billing/stripe/payment-intents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"amount": {
"currencyCode": "<string>",
"units": "<string>",
"nanos": 123
},
"stripePaymentMethodId": "<string>"
}
'{
"stripePaymentIntentId": "<string>",
"clientSecret": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
Was this page helpful?