curl --request GET \
  --url https://api.splose.com/v1/support-items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "appointmentId": 1,
  "type": "Provider Travel",
  "itemCode": 1234567890,
  "pricing": 193.99,
  "toMinutes": 20,
  "returnMinutes": 20,
  "unit": "km",
  "quantity": 123,
  "note": "Some notes",
  "createdAt": "2023-07-30T09:00:00.000Z",
  "updatedAt": "2023-07-30T09:00:00.000Z",
  "deletedAt": "2023-07-30T09:00:00.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required
Required range: x > 0
Example:

1

Response

200 - application/json

Object with support-item data.

The response is of type object.