Skip to main content
POST
/
buy
/
cart
/
checkout
Check out numbers
curl --request POST \
  --url https://api.wavix.com/v1/buy/cart/checkout \
  --header 'Content-Type: application/json' \
  --data '{
  "ids": [
    "541139862174",
    "541139862175"
  ]
}'
{
  "success": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

Body

application/json

Array of phone numbers to checkout

ids
string[]
required

A list of phone numbers to add to the cart.

Example:
["541139862174", "541139862175"]

Response

success
boolean
required

Indicates if the operation is successful

Example:

true

I