ELAELA Docs

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

Create GO Bulk quote requestbash
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

  1. Review

    Poll or fetch the quote request until ELA operations sends a quotation.

  2. Pay

    Use POST /partner-api/quote-requests/{id}/payment with SAVED_CARD or CREDIT based on the issued terms.

  3. Accept and use approved credit

    Use POST /partner-api/quote-requests/{id}/credit-accept only where partner credit is enabled.

Accept a GO Bulk quote using creditbash
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"  }'