# Read a venue

Returns one venue with its address, the training assigned to anyone who accepts a
role there, and the location it belongs to. `nice` carries the address pre-formatted
for display, both as a block and on one line.
The venue has to belong to the location in the path.
`permissions.delete` reflects whether this particular venue can be removed, which
depends on whether roles are still recruiting at it.

Endpoint: GET /api/v2/headcount/location/{location_id}/venue/{id}
Version: 2.0.0
Security: default

## Path parameters:

  - `location_id` (integer, required)
    The ID of the location.

  - `id` (integer, required)
    The ID of the venue.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.headcount_location_id` (integer)

  - `object.name` (string)

  - `object.frontend_name` (string)

  - `object.code` (string)

  - `object.is_virtual` (integer)

  - `object.description` (string)

  - `object.is_system` (integer)

  - `object.training_ids` (array)

  - `object.deleted_at` (string | null)

  - `object.created_at` (string)

  - `object.updated_at` (string)

  - `object.uuid` (string)

  - `object.address` (object)

  - `object.address.iso` (string)

  - `object.address.region_code` (string)

  - `object.address.coordinates` (object)

  - `object.address.coordinates.latitude` (string | null)

  - `object.address.coordinates.longitude` (string | null)

  - `object.address.street_address_1` (string)

  - `object.address.street_address_2` (string | null)

  - `object.address.street_address_3` (string | null)

  - `object.address.city` (string)

  - `object.address.postcode` (string)

  - `object.address.region` (string)

  - `object.address.country` (string)

  - `object.address.latitude` (string | null)

  - `object.address.longitude` (string | null)

  - `nice` (object)

  - `nice.rrn` (string)

  - `nice.address` (string)

  - `nice.address_oneline` (string)

  - `nice.address.country` (string)

  - `nice.address.country:raw` (string)

  - `nice.address.city` (string)

  - `nice.address.region` (string)

  - `nice.address.region:raw` (string)

  - `nice.address.postcode` (string)

  - `nice.address.street_address_1` (string)

  - `nice.address.street_address_2` (string | null)

  - `nice.address.street_address_3` (string | null)

  - `nice.address.latitude` (string | null)

  - `nice.address.longitude` (string | null)

  - `nice.location_name` (string)

  - `nice.headcount_location_type_name` (string)

  - `nice.headcount_location_type_id` (integer)

  - `relations` (object)

  - `relations.location` (object)

  - `relations.location.object` (object)

  - `relations.location.object.id` (integer)

  - `relations.location.object.account_id` (integer)

  - `relations.location.object.headcount_location_type_id` (integer)

  - `relations.location.object.name` (string)

  - `relations.location.object.frontend_name` (string)

  - `relations.location.object.code` (string)

  - `relations.location.object.training_ids` (array)

  - `relations.location.object.is_system` (integer)

  - `relations.location.object.deleted_at` (string | null)

  - `relations.location.object.created_at` (string)

  - `relations.location.object.updated_at` (string)

  - `relations.location.object.uuid` (string)

  - `relations.location.nice` (object)

  - `relations.location.nice.rrn` (string)

  - `relations.location.nice.headcount_location_type_name` (string)

  - `relations.location.permissions` (object)

  - `relations.location.permissions.read` (boolean)

  - `relations.location.permissions.update` (boolean)

  - `relations.location.permissions.delete` (boolean)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

