Get a specified organization.
Get a specified Bitrise organization that the user is part of.
Path parameters
-
org-slug
string Required The organization slug
GET
/organizations/{org-slug}
curl \
--request GET 'https://api.bitrise.io/v0.1/organizations/{org-slug}' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": {
"avatar_icon_url": "string",
"concurrency_count": 42,
"name": "string",
"owners": [
{
"email": "string",
"slug": "string",
"username": "string"
}
],
"slug": "string"
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}