v14

latestOpenAPI 3.0.32026-08-04377889.4 MB
projectMembers

List project members

Lists all members of a project.

get/v1/projects/{idOrName}/members

Path parameters

idOrNamestring required

The ID or name of the Project.

Example:prj_pavWOn1iLObbXLRiwVvzmPrTWyTf

The ID or name of the Project.

Query parameters

limitinteger

Limit how many project members should be returned

Example:20

Limit how many project members should be returned

sinceinteger

Timestamp in milliseconds to only include members added since then.

Example:1540095775951

Timestamp in milliseconds to only include members added since then.

untilinteger

Timestamp in milliseconds to only include members added until then.

Example:1540095775951

Timestamp in milliseconds to only include members added until then.

searchstring

Search project members by their name, username, and email.

Search project members by their name, username, and email.

teamIdstring
Example:team_1a2b3c4d5e6f7g8h9i0j1k2l

The Team identifier to perform the request on behalf of.

slugstring
Example:my-team-url-slug

The Team slug to perform the request on behalf of.

Response

Paginated list of members for the project.

object required
OR

Example response

{
  "members": [
    {
      "avatar": "123a6c5209bc3778245d011443644c8d27dc2c50",
      "email": "jane.doe@example.com",
      "role": "ADMIN",
      "computedProjectRole": "ADMIN",
      "uid": "zTuNVUXEAvvnNN3IaqinkyMw",
      "username": "jane-doe",
      "name": "Jane Doe",
      "createdAt": 1588720733602,
      "teamRole": "CONTRIBUTOR"
    }
  ],
  "pagination": {
    "count": 20,
    "next": 1540095775951,
    "prev": 1540095775951
  }
}