Kits

Fetch Kit

GET
This endpoint returns the Kit specified by ID in the URL path.

Path parameters

kitIdintegerRequired

Response

This endpoint returns an object
id
integerOptional
name
stringOptional
The name of the kit.
archived
booleanOptional
True if the kit is archived, false otherwise.
kitItems
list of objectsOptional
An array of kit items.
GET
1curl https://app.impiloplatform.com/api/v3/kit/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "id": 123,
3 "name": "Example Kit",
4 "archived": false,
5 "kitItems": [
6 {
7 "item": {
8 "id": 1,
9 "manufacturer": {
10 "id": 2,
11 "name": "Custom Manufacturer"
12 },
13 "name": "Blood Pressure Monitor",
14 "model": "iBloodPressureMonitor123",
15 "sku": "0000001"
16 },
17 "count": 1
18 }
19 ]
20}