List organizations groups

GET /organizations/{org-slug}/groups

Lists the groups of an organization

Path parameters

Responses

  • Created

    Hide response attributes Show response attributes object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Forbidden

    Hide response attribute Show response attribute object
  • Not found

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