Skip to main content

Retrieves the list of active venues

GET 

/api/v1/eventim/catalog/venues

Fetches all active venue configurations (seating plans) available in the system. Returns venue details including ID, name, and basic properties. Used to display the list of available venues for event selection.

SOAP Equivalent: AWSP_VenueGetList

Examples

Success (200)

{
"venues": [
{
"venueId": 101,
"venueName": "Salle Pleyel",
"venueAddress": "252 Rue du Faubourg Saint-Honoré, 75008 Paris",
"venuePhysical": "PLEYEL-MAIN",
"venueLogical": "PLEYEL-001"
},
{
"venueId": 102,
"venueName": "Théâtre des Champs-Élysées",
"venueAddress": "15 Avenue Montaigne, 75008 Paris",
"venuePhysical": "TCE-MAIN",
"venueLogical": "TCE-001"
}
]
}

Error 400 - Missing x-tenant header

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "The x-tenant header is required"
}

Error 500 - Server error

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.6.1",
"title": "Internal Server Error",
"status": 500,
"detail": "An unexpected error occurred",
"traceId": "00-abc123-def456-00"
}

SOAP to REST Field Mapping

REST FieldSOAP FieldNotes
venueIdID_VenueVenue unique identifier
venueNameVenueNameVenue name
venueAddressVenueAddressFull physical address of the venue
venuePhysicalVenuePhysicalPhysical venue identifier
venueLogicalVenueLogicalLogical venue identifier

Request

Responses

OK