Skip to main content
Unsubscribe
curl --request POST \
  --url 'https://api.getvero.com/api/v2/users/unsubscribe?auth_token=' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 1000
}'
{
  "status": 200,
  "message": "Success."
}

Authorizations

auth_token
string
query
required

Body

application/json
id
string

The unique identifier of the user.

Example:

1000

Response

OK

status
integer<int32>
Example:

200

message
string
Example:

"Success."