Groups
Get a group by the specified ID.
Returns a group using the specified id.
This operation can fail for the following reasons:
- No group exists with the specified ID (HTTP error 404)
- A server error occurred (HTTP error 500)
get/groups/{groupId}
Response
The group's metadata.
Example response
{
"id": "group-identifier",
"description": "Description of the group",
"artifactsType": "AVRO",
"createdBy": "user1",
"createdOn": "2019-03-22T12:51:19Z",
"modifiedBy": "user2",
"modifiedOn": "2019-07-19T15:09:00Z",
"properties": {
"custom-1": "foo",
"custom-2": "bar"
}
}