Skip to content

Return Statuses

The Return Statuses menu is part of the store's RMA (Returns) settings. Custom return statuses used to track a return through your workflow. Each status has a title, a color badge and an active flag. Built-in (default) statuses cannot be deleted.

Endpoints

ActionMethod & path
ListGET /api/admin/rma/statuses
GetGET /api/admin/rma/statuses/{id}
CreatePOST /api/admin/rma/statuses
UpdatePUT /api/admin/rma/statuses/{id}
DeleteDELETE /api/admin/rma/statuses/{id}
Mass deletePOST /api/admin/rma/statuses/mass-delete
Mass update statusPOST /api/admin/rma/statuses/mass-update-status

List responses are wrapped in the standard { data, meta } envelope.

Fields

FieldMeaning
titleThe status label.
status1 active, 0 inactive.
colorHex color of the status badge (e.g. #FDB022).
default1 for a built-in system status (cannot be deleted), 0 for a custom one.
messagenull on create / update / read; populated only on the delete confirmation.

How RMA settings fit together

Reasons, statuses and custom fields shape the returns form the customer fills in when opening a return; rules set the return window that decides whether a product is still eligible. Together they make up the store's RMA (Returns) settings.

Permissions

ActionPermission
Createsales.rma.statuses.create
Update / mass update statussales.rma.statuses.edit
Delete / mass deletesales.rma.statuses.delete

All endpoints require an admin Bearer token — see Authentication.

Released under the MIT License.