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
itemReturnJobIdfor the orderQuery GET
/api/itemreturnjobsusing thetenantOrderId(for example, viasearchTerm) and, if needed, additional filters such asfacilityIdFrom the result, select the entry matching the
tenantOrderIdand take its ID asitemReturnJobId
Create the announced return
Create an announced return using POST
/api/itemreturnjobs/{itemReturnJobId}/itemreturnsSet status to
ANNOUNCEDProvide
returnFacilityRefand at least one entry inreturnedLineItemsEach returned line item must include
tenantArticleIdand a line-item status (for example,OPEN)itemConditionLocalizedand reasons are optionalInclude the current
itemReturnJobVersion
Locate announced returns
Filter by status
ANNOUNCEDin 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
ANNOUNCEDtoCOMPLETEDand no further changes are possible after confirmation.
Last updated