GET
/api/public/v1/galleryList gallery photos
List gallery photos for a location. Photo upload is dashboard-only.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
locationId | string | Required | Location to query. |
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/gallery" \
-H "Authorization: Bearer your_access_token"200Example response
json
{
"message": "Gallery photos retrieved successfully!",
"content": {
"photos": [
{
"id": "photo_1",
"path": "location-products/..."
}
]
}
}