/getOrganizationEvents
Get Events for an Organization API Call
Returns all existing events for a particular Organization.
Production Endpoint: https://auctionconductor.com/API/getOrganizationEvents
QA Staging Endpoint: https://actestserver.com/API/getOrganizationEvents
Return Values
Parameter | Value | Description |
event_id | Number | Unique identifier for the Event. |
event_start_date | Date/time | Date and time when the event begins. |
event_end_date | Date/time | Date and time when the event ends. |
event_title | Text | Name of the event. |
venue_city | Text | City in which the event will take place. |
venue_state | Text | State in which the event will take place. |
Sample Call
No body needed, simply send the Organization API key in the request header.
Sample Response
[
{
"event_id": 161,
"event_start_date": "2012-05-19 18:00",
"event_end_date": "2012-05-19 12:00",
"event_title": "A Test Gala 2019",
"event_venue_city": "Miami",
"event_venue_state": "FLORIDA"
},
{
"event_id": 169,
"event_start_date": "2012-06-09 18:00",
"event_end_date": "2012-06-09 12:00",
"event_title": "A Test Gala 2012",
"event_venue_city": "Hackensack",
"event_venue_state": "NEW JERSEY"
},
{
"event_id": 173,
"event_start_date": "2012-06-22 18:00",
"event_end_date": "2012-06-22 23:00",
"event_title": "A Sample Event",
"event_venue_city": "Los Angeles",
"event_venue_state": "CALIFORNIA"
}