Error Shape
REST endpoints usually return one of these shapes:Common Status Codes
Pagination Limits
Different APIs expose different pagination styles. CMS list endpoints use:Order Feed Limits
The restaurant order feed returns up to 50 orders per request. Date ranges can be up to 5 days when bothdate and endDate are provided.
Retry Guidance
Retry only when the failure is temporary. Retry:- Network timeouts.
429after waiting.500or503after a short delay.
- Invalid API key.
- Missing permission.
- Unknown field.
- Required field missing.
- Invalid relation id.
Idempotency
Aggregator order creation is idempotent byaggregator and externalOrderId, and also accepts an Idempotency-Key header. See Idempotency And Errors.
Other write operations like CMS create, form submit, and message send can create new records every time they are called. Make your own integration idempotent when duplicate submissions are possible.