List organizations groups

GET /organizations/{org-slug}/groups

Lists the groups of an organization

Path parameters

  • org-slug string Required

    organization slug

Responses

  • 201

    Created

    Hide response attributes Show response attributes object
    • name string
    • slug string
  • 401

    Unauthorized

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

    Forbidden

    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}/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"
}