cURL
curl --request PUT \ --url https://example.com/api/groups/{group_id}/add_repos \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "repo_ids": [ 1, 2, 3 ] }'
"<any>"
Add multiple repositories to a group.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
The response is of type any.
any