List shooting days
Returns all shooting days configured for a gallery.
GET /group-shoot/checkin/{token}/days
Returns all shooting days configured for the gallery. Shooting days are optional — if none are configured, shootingDays is an empty array.
Requires API key authentication and X-Tenant-Slug header.
Copied
curl -X GET "https://api.exportlab.io/v1/group-shoot/checkin/{TOKEN}/days" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "X-Tenant-Slug: YOUR_TENANT"Copied
{
"ok": true,
"galleryToken": "iURWUkHo",
"shootingDays": [
{
"shootingDayId": "abc12345",
"date": "2026-04-10",
"label": "Team A - Morning",
"startTime": "09:00",
"endTime": "12:00",
"spotsTotal": 50
}
]
}| Path parameter | Type | Description |
|---|---|---|
| token | string | The gallery token |
| Response field | Type | Description |
|---|---|---|
| shootingDays | array | All shooting days for this gallery, sorted by date ascending |
| shootingDays[].shootingDayId | string | Shooting day ID returned by the Public API |
| shootingDays[].date | string | Date in YYYY-MM-DD format |
| shootingDays[].label | string | null | Optional display label |
| shootingDays[].startTime | string | null | Start time in HH:MM format |
| shootingDays[].endTime | string | null | End time in HH:MM format |
| shootingDays[].spotsTotal | number | null | Configured total spots, or null when not set |