curl --request GET \
--url http://localhost:3091/v1/api/agencies/{agencyId}/branches \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"agencyId": 123,
"name": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"phone": "<string>",
"openingHours": "<string>",
"gpsLat": 123,
"gpsLng": 123,
"isActive": true
}
]Returns all branches belonging to the agency
curl --request GET \
--url http://localhost:3091/v1/api/agencies/{agencyId}/branches \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"agencyId": 123,
"name": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"phone": "<string>",
"openingHours": "<string>",
"gpsLat": 123,
"gpsLng": 123,
"isActive": true
}
]JWT access token from POST /v1/api/auth/login