object AuthenticatedUser
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
email | String | |
first_name | String | |
last_name | String | |
created_at | ISODateTime | |
updated_at | ISODateTime | |
is_admin | Boolean | |
profile_image | String | |
default_picking_option | String | |
position | String | |
hourly_rate | Decimal | |
payroll_id | String | |
default_order_status | String | |
default_warehouse_id | String | |
is_active | Boolean | |
is_developer | Boolean | |
default_pick_order_tag | String | |
account | Account | |
allowed_warehouses | [Warehouse] | |
stores | [Store] | |
scopes | [String] | Scopes granted by the authenticated backend. |
Referenced By
Example
{
"id": "abc123",
"legacy_id": 987,
"email": "abc123",
"first_name": "abc123",
"last_name": "abc123",
"created_at": "abc123",
"updated_at": "abc123",
"is_admin": true,
"profile_image": "abc123",
"default_picking_option": "abc123",
"position": "abc123",
"hourly_rate": "abc123",
"payroll_id": "abc123",
"default_order_status": "abc123",
"default_warehouse_id": "abc123",
"is_active": true,
"is_developer": true,
"default_pick_order_tag": "abc123",
"account": Account,
"allowed_warehouses": Warehouse,
"stores": Store,
"scopes": "abc123"
}