Skip to main content
POST
https://api.tensormesh.ai
/
v1
/
billing
/
stripe
/
payment-intents
/
confirm
Confirm Stripe Payment Intent
curl --request POST \
  --url https://api.tensormesh.ai/v1/billing/stripe/payment-intents/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userId": "<string>",
  "stripePaymentIntentId": "<string>"
}
'
{
  "empty": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication using an access token. Format: Bearer <access_token>

Body

application/json

ConfirmStripePaymentIntentRequest is the request to confirm a payment intent.

userId
string

The unique ID of the user.

stripePaymentIntentId
string

The Stripe payment intent ID.

Response

A successful response.

ConfirmStripePaymentIntentResponse is the response after confirming a payment intent.

empty
object

Empty response.