Get Location List Details
You can use this endpoint to retrieve the details of a specific location list.
Request
GET /api/v1/location-lists/{id}
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/location-lists/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": {
"id": 1,
"name": "Main Office Locations",
"description": "Primary office locations for the company",
"locations": [
{
"id": 101,
"name": "Berlin Office",
"address": "Alexanderplatz 1, 10178 Berlin"
},
{
"id": 102,
"name": "Munich Office",
"address": "Marienplatz 1, 80331 Munich"
}
],
"created": "2024-01-15T10:30:00.000000Z",
"modified": "2024-01-15T10:30:00.000000Z"
}
}
Path Parameters
- Name
id
- Type
- integer
- Description
The location list ID.