get /groups/{id}
Get a specific group.
Returns the group specified by the ID parameter.
Path parameters
- id (required)
- The ID of the group.
Return type
Example data
Content-Type: application/json
{
"data" : {
"created" : "2000-01-23T04:56:07.000+00:00",
"lastUpdate" : "2000-01-23T04:56:07.000+00:00",
"name" : "name",
"description" : "description",
"id" : "00000000-0000-0000-0000-000000000000",
"enabled" : true
}
}
Responses
- 200
- Success. The group with the specified ID is returned.
- 400
- The ID parameter is malformed.
- 404
- The specified group was not found.