Tu API única es: Inicia la sessión para obtener tu clave API
Genera una lista de todos tus eventos registrados
Endpoint:https://booking.inscribirme.com/api/v1/get_eventsMétodo:
GETParámetros:
Nombre | Valor | Obligatorio | Resumen |
---|---|---|---|
key | string | sí | Your unique API key |
https://booking.inscribirme.com/api/v1/get_events?key=<< Inicia la sessión para obtener tu clave API >>Ejemplo de respuesta:
{ "events": [ { "id": << event_id >>, "name": << event_name >>, "url": << event_url >>, "detall": << event_details >> }, ... ] }
Returns a the details of an event
Endpoint:https://booking.inscribirme.com/api/v1/get_eventMétodo:
GETParámetros:
Nombre | Valor | Obligatorio | Resumen |
---|---|---|---|
key | string | sí | Your unique API key |
event_id | string | sí | Your unique ID of the event |
https://booking.inscribirme.com/api/v1/get_event?key=<< Inicia la sessión para obtener tu clave API >>&event_id=<< event_id >>Ejemplo de respuesta:
{ "id": << event_id >>, "name": << event_name >>, "start": << event_start_date >>, "finish": << event_finish_date >>, "inscripcion_start": << event_inscripcion_start >>, "inscripcion_finish": << event_inscripcion_finish >>, "amout_sold": << amount_sold >>, "url": << event_url >>, "tickets": { << ticket_name >>: { "sold": << quantity_sold >>, "total": << total_quantity >> }, ... } }
Genera una lista de todos los registros a un evento
Endpoint:https://booking.inscribirme.com/api/v1/get_event/attendeesMétodo:
GETParámetros:
Nombre | Valor | Obligatorio | Resumen |
---|---|---|---|
key | string | sí | Your unique API key |
event_id | string | sí | Your unique ID of the event |
https://booking.inscribirme.com/api/v1/get_event/attendees?key=<< Inicia la sessión para obtener tu clave API >>&event_id=<< event_id >>Ejemplo de respuesta:
[ { "order": << order_id >>, "inscrito": { "name": << name >>, "surname": << surname >>, "email": << email >>, } }, ... ]