GET
/
matters
/
{matterId}
/
tags
Get matter tags
curl --request GET \
  --url https://api.smokeball.com/matters/{matterId}/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": [
    {
      "href": "<string>",
      "relation": "<string>",
      "method": "GET",
      "self": {
        "id": "<string>",
        "href": "<string>",
        "relation": "<string>",
        "method": "<string>"
      },
      "id": "a15086f5-4da7-4271-8fea-b24d479ced2b",
      "type": 0,
      "name": "",
      "color": "Light Blue",
      "staff": {
        "id": "<string>",
        "href": "<string>",
        "relation": "<string>",
        "method": "<string>"
      }
    }
  ]
}

Authorizations

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

Path Parameters

matterId
string<uuid>
required

Response

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

The response is of type object.