GET
/
matters
/
{matterId}
/
layouts
/
{itemId}
/
contacts
curl --request GET \
  --url https://api.smokeball.com/matters/{matterId}/layouts/{itemId}/contacts \
  --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"
    },
    "key": "",
    "contact": {
      "id": "<string>",
      "href": "<string>",
      "relation": "<string>",
      "method": "<string>"
    }
  }
]

Authorizations

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

Path Parameters

matterId
string
required
itemId
string
required

Response

200
application/json

When request is successful. Returns a list of 'LayoutContact' objects.

The response is of type object[].