Endpoint
Retrieves all images associated with a specific event.
Path parameters
The ID of the event to retrieve images for
Response
Returns an array of image objects.
The unique identifier of the image
The storage key/path for the image file
Whether the image is visible to users
The ID of the event this image belongs to
Example request
curl -X GET https://api.brautcloud.com/api/image/123
Example response
[
{
"id": 456,
"imageKey": "events/123/image-abc123.jpg",
"isVisible": true,
"eventId": 123
},
{
"id": 457,
"imageKey": "events/123/image-def456.jpg",
"isVisible": true,
"eventId": 123
}
]