GET
/
contacts
/
{id}
/
tags
Get a contact
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": 0
    }
  ]
}

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' object.

The response is of type object.