GO Bulk
Request GO Bulk quotations for ELA review, then accept by payment or credit.
At a glance
GO Bulk is a manual quote flow under /partner-api/quote-requests. It is not accepted by the direct booking quote or booking endpoints.
Create a quote request
curl -X POST https://services.enviablelogistics.com/api/v1/partner-api/quote-requests \ -H "X-ELA-API-Key: ela_live_xxx" \ -H "Idempotency-Key: go-bulk-demo-001" \ -H "Content-Type: application/json" \ -d '{ "itemDescription": "20 cartons of office supplies", "quantity": 3, "pickupMethod": "HUB_DROPOFF", "pickupHubId": "hub_partner_lagos", "dropoffMethod": "HUB_PICKUP", "dropoffHubId": "hub_partner_aba", "specialHandlingRequirement": "Call warehouse supervisor before offloading." }'After ELA sends a quote
- Review
Poll or fetch the quote request until ELA operations sends a quotation.
- Pay
Use
POST /partner-api/quote-requests/{id}/paymentwithSAVED_CARDorCREDITbased on the issued terms. - Accept and use approved credit
Use
POST /partner-api/quote-requests/{id}/credit-acceptonly where partner credit is enabled.
curl -X POST https://services.enviablelogistics.com/api/v1/partner-api/quote-requests/qr_demo_123/payment \ -H "X-ELA-API-Key: ela_live_xxx" \ -H "Idempotency-Key: go-bulk-credit-demo-001" \ -H "Content-Type: application/json" \ -d '{ "paymentMethod": "CREDIT" }'