Skip to main content
POST
/
payments
/
confirm
Confirm Payment Intent
curl --request POST \
  --url https://dev-billing-api.spectertech.ai/api/v1/payments/confirm \
  --header 'Content-Type: application/json' \
  --data '{
  "paymentIntentId": "<string>",
  "returnUrl": "<string>"
}'
{
  "message": "<string>"
}

Body

application/json
paymentIntentId
string
required

Unique identifier of the payment intent

returnUrl
string

Return URL after payment confirmation (optional)

Response

OK - Successful confirmation of payment intent

message
string

Confirmation message of the payment intent

I