Get one of the calling vendor's fulfilment groups
const url = 'https://api-omni.linra.net/api/v1/vendor/orders/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api-omni.linra.net/api/v1/vendor/orders/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Returns a single fulfilment group by ID, scoped to the calling vendor. A group belonging to another vendor is reported as 404. Requires the Orders capability.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Responses
Section titled “Responses”The fulfilment group.
object
object
Deliberately EXCLUDES the reselling partner’s identity, any customer/external reference, and every money/tax field (order total, commission, VAT, currency, discounts, tax-registration numbers) and the internal saga correlation id — none of it is the vendor’s business. You are paid via your own commercial terms with Linra, tracked entirely on the offer/cost-push side, never derived from what a partner paid.
object
Linra’s own canonical order id — stable across both sides for support/correlation. Never the partner’s own external reference.
Your own order/reference id at your end, if previously pushed.
Trimmed to exactly what’s needed to pack the shipment. No money field of any kind is present.
object
The catalog SKU for this variant, resolved regardless of the variant’s current active state.
Example
{ "state": "SUCCESS", "payload": { "status": "Pending" }}Your token doesn’t carry the capability this endpoint requires.
object
object
Examples
{ "state": "FORBIDDEN_CAPABILITY_NOT_GRANTED", "payload": null, "details": { "requiredCapability": "Orders" }}Unknown fulfilment group id, or one belonging to another vendor.
object
object
Examples
{ "state": "NOT_FOUND_FULFILLMENT_GROUP", "payload": null, "details": {}}Too many requests. Retry after the Retry-After header (seconds).
object
object
Example
{ "state": "NOT_FOUND_VENDOR_OFFER"}Headers
Section titled “Headers”Seconds to wait before retrying.