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

An array of phone numbers to remove

Example:
["541139862174", "541139862175"]

Response

success
boolean
required

Indicates a successful request

Example:

true

I