Users
v1
List Account Users
Returns all users who have access to the specified account, including users with pending invitations (invitation_accepted: false). This endpoint does not consume API credits.
:::info Requires the users:read OAuth2 scope. :::
get/v1/account-users
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
page[cursor]string
Cursor for pagination. Use this value to fetch the next page of results.
page[size]integer
The number of items per page. Maximum is 100.
Response
List of account users
Example response
{
"data": [
{
"type": "account_user_summary",
"id": "123456",
"attributes": {
"email": "jane.smith@example.com",
"first_name": "Jane",
"last_name": "Smith",
"invitation_accepted": true
}
}
],
"meta": {
"pagination": {
"next_cursor": "dXNlcjpVMEc5V0ZYTlo",
"total_count": 1450
},
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}