Update custom order status
PUT
https://app.ecwid.com/api/v3/{storeId}/profile/order_status/{statusId}
Required access scopes
Your app must have the following access scopes to make this request: update_store_profile
Path params
All path params are required.
storeId
number
Ecwid store ID.
statusId
string
Status ID in the same format as in the statusId
field.
Case sensitive, for example .../order_status/PAID
Headers
The Authorization header is required.
Authorization
Bearer secret_ab***cd
Access token of the application.
Request JSON
A JSON object with the following fields:
enabled
boolean
Set true
to enable custom status in the store.
sendNotificationWhenStatusIsAssigned
boolean
Set true
to enable automatic "Order status updated" email notifications for customers.
name
string
Name of the custom order status visible in Ecwid admin and emails.
nameTranslations
Available translations for the custom order status name.
translations
Object with text field translations in the "lang": "text"
format, where the "lang"
is an ISO 639-1 language code. For example:
Translations are available for all active store languages. Only the default language translations are returned if no other translations are provided for the field. Find active store languages with GET
/profile
request > languages
> enabledLanguages
.
Response JSON
A JSON object with the following fields:
updateCount
number
The number of updated items that defines if the request was successful.
One of:
1
if the item was updated,
0
if the item was not updated.
Last updated
Was this helpful?