v1

latestOpenAPI 3.1.02026-07-22285495.1 KB
Locations

Get all location details

Use this endpoint to retrieve the details of all locations added to a particular event type in your Zuddl organization. You can use query parameters such as filter, pagination, or sort to customize the response.

Required API key scopes: READ

get/v1/events/{eventId}/locations

Path parameters

eventIdstring required

Unique identifier of the event

Query parameters

filterstring

Filter query in format:

Available filters:

  • name: operations [like]
sortstring

Sort query in format:

The following fields are sortable:

  • name
pagenumber

Page number (default: 1)

sizenumber

Page size (default: 10, max: 50)

Response

List of locations retrieved successfully

Example response

{
  "pagination": {
    "next": "/{apiEndpoint}?page=3",
    "current": "/{apiEndpoint}?page=2",
    "previous": "/{apiEndpoint}?page=1"
  },
  "data": [
    {
      "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
      "name": "Conference Hall A, Tech Park",
      "mapLink": "https://maps.google.com/..."
    }
  ]
}