Skip to main content
POST
/
v1
/
subscription
/
extra-numbers
Buy an extra number (On Demand)
curl --request POST \
  --url https://pilotstatus.com.br/v1/subscription/extra-numbers \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "quantity": 1,
  "confirm": true
}
'
{
  "success": true,
  "charged": true,
  "plan": "ON_DEMAND",
  "paidExtraNumbers": 2,
  "monthlyTotalBRL": 59.8
}

Authorizations

x-api-key
string
header
required

Your ps_ API key

Body

application/json
quantity
number

How many numbers to buy (default 1).

Example:

"1"

confirm
boolean

Required (true) when the purchase converts the plan (Free → On Demand).

Example:

"true"

Response

Buy 1 (with confirmation)