Confirm receipt of your own returned item
const url = 'https://api-omni-vendors.linra.net/api/v1/scent/returns/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/received';const options = {method: 'PATCH', 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 PATCH \ --url https://api-omni-vendors.linra.net/api/v1/scent/returns/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/received \ --header 'Authorization: Bearer <token>'Model-A supplier door: InTransit -> Received. Reaches ONLY a return request whose
destination is your own vendor id (ReturnDestinationType == Supplier) — any other
request 404s. Rejects a request not currently InTransit with
BUSINESS_RETURN_REQUEST_INVALID_TRANSITION. Requires the Orders capability.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”The return request id.
Responses
Section titled “Responses”The return request, vendor-safe.
object
object
Deliberately EXCLUDES the reselling partner’s identity (PartnerId — Linra’s B2B2B relationship, not yours), every internal-staff identity, and every cost-attribution/custody/ carrier-claim fact — the same “does a vendor need this” test VendorFulfillmentGroupResponse applies.
object
Linra’s own canonical order id — stable support-correlation reference.
object
Always Supplier for a row reachable on this API at all.
Linra’s DECISIVE outcome, once decided (null until staff — or the silence-timeout worker — decides). Never writable by you.
Your own proposed outcome, echoed back.
object
object
Example
{ "state": "SUCCESS", "payload": { "status": "Received", "inspection": { "receivingParty": "Supplier", "outcome": "AcceptedDefect", "supplierProposedOutcome": "AcceptedDefect", "evidence": [ { "kind": "Photo" } ] } }}Your token doesn’t carry the capability this endpoint requires.
object
object
Examples
{ "state": "FORBIDDEN_CAPABILITY_NOT_GRANTED", "payload": null, "details": { "requiredCapability": "Orders" }}Unknown return request id, one belonging to another vendor, or one not destined to a supplier at all (a Linra-sorting-point-bound return — never reachable on this API).
object
object
Examples
{ "state": "NOT_FOUND_RETURN_REQUEST", "payload": null, "details": {}}The request is not currently InTransit.
object
object
Examples
{ "state": "BUSINESS_RETURN_REQUEST_INVALID_TRANSITION", "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.

