Sites

Fetch Site

GET
Returns the site specified by the ID in the URL path.

Path parameters

siteIdintegerRequired

Response

This endpoint returns an object
id
integerOptional
Unique identifier for the site, managed by Impilo.
name
stringOptional
The name of the site.
active
booleanOptional
True if the site is active, false otherwise.
address
objectOptional
The shipping address for the site.
GET
1curl https://app.impiloplatform.com/api/v3/site/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "id": 1,
3 "name": "name",
4 "active": true,
5 "address": {
6 "lineOne": "lineOne",
7 "lineTwo": "lineTwo",
8 "lineThree": "lineThree",
9 "city": "city",
10 "state": "state",
11 "zipCode": "zipCode",
12 "country": "country",
13 "note": "note"
14 }
15}