elefymove

Documentación para desarrolladores

Guías y referencia de la Open API de ElefyMove.

Estas guías están disponibles actualmente solo en inglés.

Endpoints

MétodoEndpointÁmbitoQué hace
GET/api/public/v1/marketplace/bookingsmarketplace:readLista tus propias reservas del marketplace, paginadas y filtradas. Las respuestas solo incluyen fechas y referencias.
GET/api/public/v1/marketplace/bookings/{id}marketplace:readConsulta una de tus reservas del marketplace por ID.
POST/api/public/v1/marketplace/bookings/{id}/declinemarketplace:writeRechaza una reserva que todavía está pendiente de pago. No existe una ruta de confirmación: una reserva se confirma en el momento en que se cobra el pago, nunca por la aprobación del proveedor.

How marketplace bookings work

  • Elefy Market bookings cover sessions, date-range stays, and goods orders on the same underlying booking — the read routes return whichever of those a given booking is.
  • Reads are references and dates only — no guest or buyer personal data is ever returned, by design, the same rule as every other surface on this API.
  • pending means the booking is awaiting payment capture, not awaiting your approval. POST /marketplace/bookings/:id/decline only works on a booking still in that state — any other status returns a 409 (BOOKING_NOT_PENDING).
  • There is no confirm, reschedule, or refund route: a booking becomes confirmed the moment payment is captured, never by provider approval, and no money moves through this API in either direction.