Return Overdue
The Return Overdue component displays a summary of an order that is no longer eligible for a return due to being overdue. It can be used in isolation or in conjunction with the integrated returns portal.
Example
{
"type": "returnOverdue",
"payload": {
"price": {
"amount": 44.99,
"currencyCode": "GBP"
},
"infoText": "Last date for return: Nov 28\n\nLine 2",
"orderDate": "2025-03-10T01:20:00",
"orderNumber": "#13231414123123212",
"productImages": ["example.com/image1.png", "example.com/image1.png"]
}
}
Properties
payload
- price: Object containing pricing info
- amount: the numeric total amount of the order
- currencyCode:
GBP
|USD
|EUR
- infoText: Informational text (supports markdown) about the return deadline or overdue status.
- orderDate: ISO date string for when the order was placed. Displayed in a locale-formatted way.
- orderNumber: The order reference number.
- productImages: (optional) Array of product image URLs. The first two are shown, with a badge indicating the count of any additional items.
Updated 2 days ago