order_allowed_actions
The order allowed actions in the order.
Properties | Type | Description |
---|---|---|
add_to_cart | boolean | Returns true if the order can be added to the cart. Returns false if not. |
cancel_order | boolean | Returns true if the order can be canceled. Returns false if not. |
delete_order | boolean | Returns true if the order can be deleted. Returns false if not. |
download_invoice | boolean | Returns true if the order can download the invoice. Returns false if not. |
finish_fulfillment | boolean | Returns true if the order has a track shipping button. Returns false if not. |
pay_order | boolean | Returns true if the order can be paid. Returns false if not. |
repay_order | boolean | Returns true if the order can be paid again. Returns false if not. |
{
"delete_order": false,
"cancel_order": false,
"repay_order": false,
"pay_order": false,
"add_to_cart": false,
"download_invoice": true,
"finish_fulfillment": false
}
Updated over 1 year ago