Skip to main content
DELETE
/
buy
/
cart
Remove numbers from the cart
curl --request DELETE \
  --url 'https://api.wavix.com/v1/buy/cart?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[]

Comma-separated list of phone numbers to remove

Example:
["541139862174", "541139862175"]

Response

success
boolean
required

Indicates a successful request

Example:

true