Skip to main content

Employee Group

Returns a single employee group specified by group_id. This endpoint provides information about the employee group's tour configuration, including which tour types are enabled and whether external bookings are allowed through the API.

GET
/api/v2/group/:group_id

Request

Example requestGET
$ curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/v2/group/123"

Response

Example responseJSON200 · application/json
{
"id": 23,
"name": "Some Employee group",
"guided_tours_enabled": true,
"guided_tours_external_bookings_enabled": true,
"self_guided_tours_enabled": true,
"self_guided_tours_external_bookings_enabled": true,
"video_tours_enabled": true,
"video_tours_external_bookings_enabled": true,
"platform_of_choice": "Skype, Facebook, Hangouts"
}