GET

List Event Categories


Retrieves a list of categories that are not in the `HIDDEN`` state.

Permissions
Manage Events - all permissions
Read Events - all read permissions
Manage Events
Manage Guest List
Read Events
Manage Events
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/categories/{eventId}

Path Params
eventIdstringRequired

Event ID.

Response Object
categoriesArray <Category>

A list of categories.

List Event Categories Example 1
Request
cURL
curl -X GET 'https://www.wixapis.com/events/v1/categories/e8e784a9-8f2b-47ed-9c42-238c0922da7e' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH TOKEN>'
Response
JSON
{ "categories": [ { "name": "workshop", "states": ["MANUAL"], "_id": "6ec293a8-1b47-4337-9c4e-9a6aeb35e66a", "_createdDate": "2022-12-13T11:03:19.174Z" }, { "name": "technology", "states": ["MANUAL"], "_id": "89d3e8d4-45bc-4439-9e74-7e21b3418c88", "_createdDate": "2023-07-12T11:07:35.776Z" } ] }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?