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! | Public API user ID that identifies the related record. |
email | String | Email address for the contact. |
first_name | String | First name for the address or contact. |
last_name | String | Last name for the address or contact. |
payroll_id | String | Public API payroll ID that identifies the related record. |
hourly_rate | Decimal | Monetary amount as a decimal value in the record currency; not cents. |
default_warehouse_id | String | Public API default warehouse ID that identifies the related record. |
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 | Default pick order tag for this user. |
Referenced By
- user_update Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"user_id": "VXNlcjoxMjM0",
"email": "customer@example.com",
"first_name": "Ada",
"last_name": "Lovelace",
"payroll_id": "UGF5cm9sbDoxMjM0",
"hourly_rate": 19.99,
"default_warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"default_picking_option": "batch",
"default_order_status": "pending",
"default_pick_order_tag": "priority"
}