Items

Fetch Item

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

Path parameters

itemIdintegerRequired

Response

This endpoint returns an object
id
integerOptional
Unique identifier for the item, managed by Impilo.
manufacturer
objectOptional
The manufacturer for this item.
name
stringOptional
The name for this item.
model
stringOptional
The manufacturer-assigned model for this item.
sku
stringOptional
The Impilo-assigned SKU for this item.
GET
1curl https://app.impiloplatform.com/api/v3/item/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "id": 1,
3 "manufacturer": {
4 "id": 2,
5 "name": "Custom Manufacturer"
6 },
7 "name": "Blood Pressure Monitor",
8 "model": "iBloodPressureMonitor123",
9 "sku": "0000001"
10}