Users

Get a user

GET
Gets a user

Path parameters

userIdstringRequired
The user id

Response

This endpoint returns an object
data
object
Configurations for the user
GET
$curl https://api.x.flatfile.com/v1/users/us_usr_YOUR_ID \
> -H "Authorization: Bearer <token>"
Response
1{
2 "data": {
3 "accountId": "us_acc_YOUR_ID",
4 "createdAt": "2023-10-30T16:59:45.735Z",
5 "email": "john.smith@example.com",
6 "id": "us_usr_YOUR_ID",
7 "idp": "FRONTEGG",
8 "metadata": {},
9 "name": "john.smith",
10 "updatedAt": "2023-10-30T16:59:45.735Z",
11 "dashboard": 2,
12 "idpRef": "ab1cf38e-e617-4547-b37d-376a7ac9e554",
13 "lastSeenAt": "2023-10-30T16:59:45.735Z"
14 }
15}