Adds a group to the organization

POST /organizations/{org-slug}/groups

Adds a group to the organization

Path parameters

Body Required

group data

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
POST /organizations/{org-slug}/groups
curl \
 --request POST 'https://api.bitrise.io/v0.1/organizations/{org-slug}/groups' \
 --header "Authorization: $API_KEY" \
 --data '{"name":"string"}'
Request examples
{
  "name": "string"
}
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"
}