GET
/
contacts
/
{id}
/
tags
Get contact tags
curl --request GET \
  --url https://api.smokeball.com/contacts/{id}/tags \
  --header 'Authorization: <api-key>' \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "href": "<string>",
  "relation": "<string>",
  "method": "GET",
  "self": {
    "id": "<string>",
    "href": "<string>",
    "relation": "<string>",
    "method": "GET"
  },
  "value": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "Custom"
    }
  ]
}

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Path Parameters

id
string<uuid>
required

Response

When request is successful. Returns a collection of 'Tag' objects.

id
string | null
href
string | null
relation
string | null
method
string | null
default:GET
self
object
value
object[] | null