Announced returns
Introduction
An announced return is a return that has been registered in the shop system by the customer before the physical package arrives at the facility.
The return announcement is transferred from the shop and an ItemReturn
is created in the associated ItemReturnJob
with the status ANNOUNCED
. Announced returns include the items and details provided by the customer, such as return reason and item condition.
These details are made available in the Backoffice and the Returns app, where announced returns can be searched for, optionally using a barcode from the return label if provided. Furthermore, the user is able to check and, if necessary, edit those details and confirm the return.
When confirming the return, the status changes from ANNOUNCED
to COMPLETED
, and no further changes are possible after confirmation.
Create an announced return and complete it
Obtain the
itemReturnJobId
for the orderQuery GET
/api/itemreturnjobs
using thetenantOrderId
(for example, viasearchTerm
) and, if needed, additional filters such asfacilityId
From the result, select the entry matching the
tenantOrderId
and take its ID asitemReturnJobId
Create the announced return
Create an announced return using POST
/api/itemreturnjobs/{itemReturnJobId}/itemreturns
Set status to
ANNOUNCED
Provide
returnFacilityRef
and at least one entry inreturnedLineItems
Each returned line item must include
tenantArticleId
and a line-item status (for example,OPEN
)itemConditionLocalized
and reasons are optionalInclude the current
itemReturnJobVersion
Locate announced returns
Filter by status
ANNOUNCED
in BackofficeSearch by order information
Edit prior to confirmation (optional)
Edits can be performed in the mobile application:
Adjust quantities
Replace or correct items within the same order
Update reasons or conditions (if applicable)
Add missing items from the same order if necessary
Confirm the return using the returns app
Review the summary of items and details
Confirm the return
When confirming the return, the status changes from
ANNOUNCED
toCOMPLETED
and no further changes are possible after confirmation.
Last updated