GET
/
matters
/
{matterId}
/
items
/
{id}
curl --request GET \
  --url https://api.smokeball.com/matters/{matterId}/items/{id} \
  --header 'Authorization: <api-key>' \
  --header 'x-api-key: <api-key>'
{
  "href": "<string>",
  "relation": "<string>",
  "method": "GET",
  "self": {
    "id": "<string>",
    "href": "<string>",
    "relation": "<string>",
    "method": "GET"
  },
  "id": "009f778f-83df-454a-b344-768a862a7e55",
  "name": "Client",
  "index": 0,
  "visible": false,
  "subItems": [
    {}
  ]
}

Authorizations

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

Path Parameters

matterId
string
required
id
string
required

Response

200
application/json

When request is successful. Returns a 'MatterItem' object.

The response is of type object.