Skip to main content

members.list

List the people in an organization

Request
GET/api/v1/organizations/{organizationSlug}/members
Scope required
organizations:read
Effect
Reads only. Safe to retry and safe for an agent to call unprompted.
Acts on
Acts on an organization, and names it in the path.
MCP tool
members_list
Environment
Live and sandbox alike.
Request body
JSON.

What it does

Returns the organization's members with the role each one holds and the `mem_…` id that `members.update_role` and `members.remove` address them by. Staff see everybody; an applicant member sees only the staff who coach them, because the other applicants on a roster are none of their business. The list is ordered by the date each person joined, oldest first.

Parameters

Parameters this endpoint accepts, where each one goes, and whether it is required
NameSent inRequirementAccepts
organizationSlugpathRequiredstring
limitqueryOptionalinteger
cursorqueryOptionalstring

Response

data
array of object, required
displayName
string or null, required
email
string, required
id
string, required
joinedAt
string, required
role
one of: owner, admin, coach, applicant, required
hasMore
boolean, required
nextCursor
string or null, required

Examples

The staff and applicants of a career centre

The staff and applicants of a career centre — request
curl -s https://www.jobapplicationtracking.com/api/v1/organizations/northside-career-center/members \
  -H "Authorization: Bearer $JAT_KEY"
The staff and applicants of a career centre — response
{
  "data": [
    {
      "id": "mem_41",
      "email": "coach@northside.example",
      "displayName": "Dana Reyes",
      "role": "coach",
      "joinedAt": "2026-01-06T12:00:00.000Z"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}

Related operations