elefymove

Developer documentation

Guides and reference for the ElefyMove Open API.

Endpoints

MethodEndpointScopeWhat it does
GET/api/public/v1/marketplace/bookingsmarketplace:readList your own marketplace bookings, paginated and filtered. Responses carry dates and references only.
GET/api/public/v1/marketplace/bookings/{id}marketplace:readRead one of your marketplace bookings by id.
POST/api/public/v1/marketplace/bookings/{id}/declinemarketplace:writeDecline a booking that is still awaiting payment. There is no confirm route — a booking is confirmed when payment is captured, not by provider approval.

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.