Skip to main content
POST
/
buy
/
cart
/
checkout
Check out numbers
curl --request POST \
  --url 'https://api.wavix.com/v1/buy/cart/checkout?appid=' \
  --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
ids
string[]
required

List of phone numbers to check out from the cart

Example:
["541139862174", "541139862175"]

Response

success
boolean
required

Indicates if the operation is successful

Example:

true