List the members of the organization

GET /organizations/{org-slug}/members

List the members of the organization

Path parameters

  • org-slug string Required

    organization slug

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • email string
    • slug string
    • username string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • error_msg string
  • 404

    Not found

    Hide response attribute Show response attribute object
    • error_msg string
GET /organizations/{org-slug}/members
curl \
 --request GET 'https://api.bitrise.io/v0.1/organizations/{org-slug}/members' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "email": "string",
    "slug": "string",
    "username": "string"
  }
]
Response examples (401)
{
  "error_msg": "string"
}
Response examples (404)
{
  "error_msg": "string"
}