Get Group by Name

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: This API will fetch the group details.

Usage: GET/api/v1/scim/v2/Groups/<groupName>

Produces: application/scim+json; charset=UTF-8

Header parameter:Authorization: Bearer

Sample response:

200 - OK - group exists

{
   "displayName": "examplegroup",
   "id": "examplegroup",
   "members": [
       {
           "value": "anonymous",
           "display": "anonymous"
       }
   ],
   "schemas": [
       "urn:ietf:params:scim:schemas:core:2.0:Group"
   ],
   "meta": {
       "resourceType": "Group"
   }
}

Sample response when group is not found:

404 - Group not found

{
   "status": 404,
   "detail": "examplesgroup isn't found",
   "schemas": [
       "urn:ietf:params:scim:api:messages:2.0:Error"
   ]
}