GET
/v2/orgs/{org_name}/groups
curl \
--request GET 'https://hub.docker.com/v2/orgs/myorganization/groups' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"count": 1,
"next": "string",
"previous": "string",
"results": [
{
"id": 10,
"uuid": "string",
"name": "mygroup",
"description": "Groups description",
"member_count": 10
}
]
}
Response examples (401)
{
"errinfo": {},
"detail": "string",
"message": "string"
}
Response examples (403)
{
"errinfo": {},
"detail": "string",
"message": "string"
}
Response examples (404)
{
"errinfo": {},
"detail": "string",
"message": "string"
}