This endpoint allows you to retrieve a user by their ID.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/users/{user_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'OK
The date and time when the user was created in UTC.
Example:"2024-01-01T00:00:00Z"
The date and time when the user was last updated in UTC.
Example:"2024-01-01T00:00:00Z"
The payment types the user can transact with.
Items Enum:"bills""cards""reimbursements"
Example:
[ "cards" ]
First day of the out-of-office period (inclusive).
Example:"2026-06-01"
Last day of the out-of-office period (inclusive).
Example:"2026-06-15"
The user ID to delegate approvals to while out of office.
Example:789
Response
{ "id": 123, "first_name": "John", "last_name": "Doe", "name": "John Doe", "email": "john.doe@example.com", "role": "Team Member", "role_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "is_deleted": false, "created": "2024-01-01T00:00:00Z", "updated": "2024-01-01T00:00:00Z", "payment_types": [ "cards" ], "out_of_office_mode": true, "out_of_office_start_date": "2026-06-01", "out_of_office_end_date": "2026-06-15", "delegate_approver": 789, "expense_delegate": [ 456, 789 ] }