Skip to main content
POST
/
v3
/
teams
/
{team}
/
billing
/
payment-methods
/
confirm
Confirm Payment Method
curl --request POST \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/payment-methods/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "payment_method": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

Use this file to discover all available pages before exploring further.

Confirms and saves a payment method after the Stripe Setup Intent has been completed on the client side.
team
string
required
The UUID of the team.
payment_method
string
required
The Stripe payment method ID.

Response

success
boolean
Whether the payment method was confirmed and saved successfully.