Partner API Overview
This overview reflects the real controller structure currently implemented in LosCenotes API.
Base URL
https://service-gateway.loscenotes.com/api
All routes shown in this documentation already include the global /api prefix.
Partner endpoint families
| Family | Base path | Auth | Endpoints |
|---|---|---|---|
| Public Partner API | /api/partner | X-API-Key except seed-test-data | 7 |
| Partner Registration | /api/partners | Public + throttling | 2 |
| Partner Portal | /api/partner-portal | JWT partner user | 26 |
| Admin Partners | /api/admin/partners | JWT admin | 11 |
| Settings | /api/partner-settings | JWT partner user | 10 |
| Users | /api/partners/users | JWT + permissions | 9 |
| Reports | /api/partner-reports | JWT partner user | 7 |
| Reservations | /api/partner-reservations | JWT partner user | 6 |
| Webhooks | /api/partners/webhooks | JWT + permissions | 4 |
| Sandbox | /api/partner-sandbox | Sandbox API key | 3 |
| Webhook Simulator | /api/partner/webhooks/simulator | Sandbox API key | 4 |
Total current partner endpoints: 89
Response architecture
Partner endpoints follow the standard LosCenotes wrapper:
{
"success": true,
"message": "partners.portal.dashboard_retrieved",
"data": {},
"pagination": {
"total": 25,
"perPage": 15,
"currentPage": 1,
"lastPage": 2
},
"currency": {
"code": "MXN",
"symbol": "$"
}
}
Notes
paginationonly appears on list endpointscurrencyonly appears on pricing-related endpoints- some endpoints return plain metadata objects in
data, others return arrays or detail objects - the
/api/partnerfamily is mostly API-key protected, withPOST /api/partner/seed-test-dataas a public exception
Error shape
Error responses can include validation details like these:
{
"success": false,
"message": "validation.invalid_input",
"statusCode": 400,
"timestamp": "2026-03-10T18:00:00.000Z",
"path": "/api/partner/reservations",
"errors": {
"messages": ["guestEmail must be an email"],
"fields": {
"guestEmail": ["guestEmail must be an email"]
}
}
}
Navigation by use case
External integrations
New partner onboarding
Portal and operations
Shared platform APIs
Not every integration endpoint lives under src/partners. Partners also commonly use shared modules:
/api/pricing/*/api/payment-methods*/api/checkout/*/api/public/discount-rules/*/api/coupons/*/api/cenotes/*
Those are documented in the shared platform section of this docs site.
Verified against controllers on 2026-03-10.