Get List
GET/api/eventmanagers
Get Event Managers
This endpoint retrieves a list of event managers from the UdyogX platform. It is useful for obtaining information about available event managers for various events.
Request Parameters
This is a GET request and does not require any input parameters in the request body.
Response Structure
The response will contain a JSON object with the following structure:
- eventManagers: An array of event manager objects, each containing:
- id: A unique identifier for the event manager.
- name: The name of the event manager.
- contact: Contact information for the event manager.
- location: The geographical location of the event manager.
- services: A list of services provided by the event manager.
Example Response
{
"eventManagers": [
{
"id": "1",
"name": "Event Manager A",
"contact": "contact@example.com",
"location": "City A",
"services": ["Service 1", "Service 2"]
},
{
"id": "2",
"name": "Event Manager B",
"contact": "contact@example.com",
"location": "City B",
"services": ["Service 3", "Service 4"]
}
]
}
This response provides a comprehensive overview of the event managers available on the platform, allowing users to make informed decisions based on the details provided.
Responses
- 200