PUT
/
groups
/
{group_id}
curl --request PUT \
  --url https://example.com/api/groups/{group_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "repos": [
    123
  ]
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

group_id
integer
required

Body

application/json

Schema for updating a group.

name
string | null
Maximum length: 100
description
string | null
Maximum length: 255
repos
integer[] | null

Response

200
application/json
Successful Response

The response is of type any.