Operation Actions
Order Actions
| Action | Description | Undoable |
|---|---|---|
update_status | Change the status of selected orders | Yes |
add_tag | Add a tag to selected orders | Yes |
remove_tag | Remove a tag from selected orders | Yes |
add_note | Add a note to selected orders | No |
assign_dispatcher | Route orders through a dispatcher | No |
trigger_sync | Re-sync orders from source bridge | No |
push_fulfillment | Push fulfillment to source platform | No |
export | Export to CSV | N/A |
Shipment Actions
| Action | Description | Undoable |
|---|---|---|
update_status | Change shipment status | Yes |
sync_tracking | Refresh tracking data | No |
void_labels | Void shipping labels | No |
export | Export to CSV | N/A |
Action Parameters
Each action type requires specific parameters:
update_status
{ "type": "update_status", "value": "processing" }add_tag / remove_tag
{ "type": "add_tag", "value": "priority" }add_note
{ "type": "add_note", "value": "Reviewed by operations team" }push_fulfillment
{ "type": "push_fulfillment" }No additional parameters — uses the order’s current shipment data.
export
{ "type": "export", "format": "csv" }