Return Status Change Email Template

Return status change email triggers after a customer return’s status has changed.

Object properties

PropertyTypeDescription
returnobject
return.idinteger
return.reasonstring
return.actionstring
return.commentsstring
return.productobject
return.product.namestring
return.product.quantityinteger
return.product.pricestring
return.product.skustring
return.product.thumbnailstring
return.statusobject
return.status.valueinteger
return.status.formattedstring
return.store_creditobject
return.store_credit.valuefloat
return.store_credit.formattedstring
return.linkstring
return.instructionsstring
orderobject
order.idinteger
storeobject
store.namestring
store.domain_namestring
store.logoobject
store.logo.titlestring
store.logo.namestring
store.logo.urlstring
store.ssl_pathstring
store.cdn_pathstring
store.image_directorystring
store.img_pathstring
store.path_normalstringPath to the store (i.e., domain + protocol)
store.pathstring
store.addressstring
store.languageobject
store.language.codestring
store.language.directionstringLeft to right or right to left, depending on the language
customerobject
customer.first_namestring
customer.full_namestring
customer.emailstring
customer.grouparray
customer.group[].namestring
miscobject
misc.yearinteger
translationsobject
translations.enobject
translations.en.titlestring
translations.en.hellostring
translations.en.messagestring
translations.en.received_creditstring
translations.en.details_titlestring
translations.en.return_reasonstring
translations.en.return_actionstring
translations.en.return_commentsstring
translations.en.check_statusstring
translations.en.products_titlestring
translations.en.quantitystring
translations.en.instructions_titlestring
translations.en.go_shoppingstring

Example

{
"return": {
"id": 1,
"reason": "reason of return",
"action": "action",
"comments": "sample comment",
"product": {
"name": "ProductName",
"quantity": 2,
"thumbnail_url": ""
},
"status": {
"value": 1,
"formatted": "Pending"
},
"store_credit": {
"value": 10.1,
"formatted": "$10.1 USD"
},
"link": "https://my-dev-store-97434969.store.bcdev/account.php?action=view_returns",
"instructions": null
},
"order": {
"id": 1
},
"store": {
"name": "My Dev Store 97434969",
"domain_name": "my-dev-store-97434969.store.bcdev",
"logo": {
"title": "[= My Dev Store 97434969 =]",
"name": "avatar-2020_1612860757__16350.jpeg",
"url": "https://valeryderived-cloud-dev-vm.store.bcdev/store/f1kr2akw96/product_images/avatar-2020_1612860757__16350.jpeg"
},
"ssl_path": "https://my-dev-store-97434969.store.bcdev",
"cdn_path": "https://valeryderived-cloud-dev-vm.store.bcdev/store/f1kr2akw96",
"image_directory": "product_images",
"img_path": "https://valeryderived-cloud-dev-vm.store.bcdev/r08d84bb67d250c7624502ed76d8e0bafb1a5cacf/g-themes/ClassicNext/images",
"path_normal": "https://my-dev-store-97434969.store.bcdev",
"path": "https://my-dev-store-97434969.store.bcdev",
"address": "123 Fake St, Dallas, TX 75225",
"language": {
"code": "en",
"direction": "ltr"
}
},
"customer": {
"first_name": "John",
"full_name": "John Jr",
"email": "john.f@example.com"
},
"misc": {
"year": 2021
},
"translations": {
"en": {
"title": "Return request status changed",
"hello": "Hello {{name}}",
"message": "The status of your return request for order #{{id}} has changed to <strong>{{status}}</strong>.",
"received_credit": "You have received a store credit of {{credits}} To use it simply place your order and you will be able to choose store credit as the payment method when it comes time to pay for your order.",
"details_title": "Return details",
"return_reason": "Return reason:",
"return_action": "Return action:",
"return_comments": "Your comments:",
"check_status": "Check return status",
"products_title": "Return items",
"quantity": "Qty:",
"instructions_title": "Return Instructions:",
"go_shopping": "Go shopping"
}
}
}