Skip to main content
Edit
curl --request PUT \
  --url 'https://api.getvero.com/api/v2/users/tags/edit?auth_token=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 1000,
  "add": [
    "prospect"
  ],
  "remove": [
    "prospect"
  ]
}
'
{
  "status": 200,
  "message": "Success."
}

Authorizations

auth_token
string
query
required

Body

application/json
id
string

The unique identifier of the user.

Example:

1000

add
string[]

An array of tags to add.

remove
string[]

An array of tags to remove.

Response

OK

status
integer<int32>
Example:

200

message
string
Example:

"Success."