input UpdateUserInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
user_id | String! | |
email | String | |
first_name | String | |
last_name | String | |
payroll_id | String | |
hourly_rate | Decimal | |
default_warehouse_id | String | |
default_picking_option | String | Possible values: mib, sib. |
default_order_status | String | Possible values: pending or any custom order status name for the account. |
default_pick_order_tag | String |
Referenced By
- user_update Mutation
Example
{
"customer_account_id": "abc123",
"user_id": "abc123",
"email": "abc123",
"first_name": "abc123",
"last_name": "abc123",
"payroll_id": "abc123",
"hourly_rate": "abc123",
"default_warehouse_id": "abc123",
"default_picking_option": "abc123",
"default_order_status": "abc123",
"default_pick_order_tag": "abc123"
}