Making Your First Request
To make your first request to the Rendr API, follow these steps.
Authenticate
Before calling any endpoint, obtain an access token using the OAuth2 token endpoint.
- Use your
client_idandclient_secret - Tokens are valid for 1 hour
- Include the token in the
Authorization: Bearerheader on all requests
See Authentication for full details and response formats.
Create a Delivery
Once authenticated, create a delivery. A delivery is the primary orchestration object in Rendr. It contains:
When you submit the delivery, Rendr will:
- Validate the payload
- Apply store configuration
- Enforce compliance rules
- Assign an initial delivery state
If immediate booking is enabled, Rendr automatically begins orchestration. No additional calls are required to trigger carrier selection or dispatch.
For required and optional fields, see the API Reference.
Store the Delivery ID
The response will include a unique delivery identifier. You should:
- Persist this ID in your system
- Use it for tracking status and events
- Use it for reconciliation and support queries
Track Progression
After creation, Rendr manages the full delivery lifecycle. Poll the delivery object via the API at any time to retrieve the current state.
For full lifecycle details, see Workflow Summary.
