Skip to main content
DELETE
/
v1
/
buy
/
cart
Remove numbers from the cart
curl --request DELETE \
  --url https://api.wavix.com/v1/buy/cart \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "541139862174",
    "541139862175"
  ]
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer token using appid (Authorization: Bearer )

Body

application/json
ids
string[]

Comma-separated list of phone numbers to remove

Example:
["541139862174", "541139862175"]

Response

Request successful.

success
boolean
required

Indicates a successful request

Example:

true