Share feedback
Answers are generated based on the documentation.

Schema

RepositoryGroupCreationRequest

Type: object

group_id · required

Type: integer

The ID of the organization group to grant access to
All schema constraints and annotations
{
  "description": "The ID of the organization group to grant access to",
  "example": 12345,
  "format": "int64",
  "type": "integer"
}
permission · required

Type: string

The permission level to grant to the group:

  • read: Can view and pull from the repository
  • write: Can view, pull, and push to the repository
  • admin: Can view, pull, push, and manage repository settings
All schema constraints and annotations
{
  "description": "The permission level to grant to the group:\n- read: Can view and pull from the repository\n- write: Can view, pull, and push to the repository\n- admin: Can view, pull, push, and manage repository settings\n",
  "enum": [
    "read",
    "write",
    "admin"
  ],
  "example": "write",
  "type": "string"
}
All schema constraints and annotations
{
  "properties": {
    "group_id": {
      "description": "The ID of the organization group to grant access to",
      "example": 12345,
      "format": "int64",
      "type": "integer"
    },
    "permission": {
      "description": "The permission level to grant to the group:\n- read: Can view and pull from the repository\n- write: Can view, pull, and push to the repository\n- admin: Can view, pull, push, and manage repository settings\n",
      "enum": [
        "read",
        "write",
        "admin"
      ],
      "example": "write",
      "type": "string"
    }
  },
  "required": [
    "group_id",
    "permission"
  ],
  "type": "object"
}