Users
Make a GET request to /users
to retrieve a list of the users in your account. Use this route if you need to find a user's email address in order to create an invitation on their behalf. You must include the email address of one of these users when creating invitations.
GET /users
{
"mode": "live",
"object": "list",
"total_count": 3,
"has_more": false,
"data": [
{
"object": "user_list_item",
"id": 33123,
"first_name": "Joe",
"last_name": "Coach",
"email": "joe.coach@jofiscore.com",
"phone": null,
"created_at": "2023-01-25T05:47:46.598246+00:00",
"invitations_count": 45
},
{
"object": "user_list_item",
"id": 33456,
"first_name": "Jane",
"last_name": "Recruiter",
"email": "jane.recruiter@jofiscore.com",
"phone": "+15551234567",
"created_at": "2023-01-25T05:43:02.250257+00:00",
"invitations_count": 106
},
{
"object": "user_list_item",
"id": 44123,
"first_name": "Laura",
"last_name": "Supervisor",
"email": "laura.supervisor@jofiscore.com",
"phone": null,
"created_at": "2021-01-26T16:09:00.227197+00:00",
"invitations_count": 0
},
]
}