Groups
Create a new group
Creates a new group.
This operation can fail for the following reasons:
- A server error occurred (HTTP error 500)
- The group already exist (HTTP error 409)
- Invalid group ID (e.g., reserved name 'default') (HTTP error 400)
post/groups
Request body
Example request
{
"groupId": "group-identifier",
"description": "The description of the artifact.",
"labels": {
"custom-1": "foo",
"custom-2": "bar"
}
}Response
The group has been successfully created.
Example response
{
"groupId": "group-identifier",
"description": "Description of the group",
"artifactsType": "AVRO",
"owner": "user1",
"createdOn": "2019-03-22T12:51:19Z",
"modifiedBy": "user2",
"modifiedOn": "2019-07-19T15:09:00Z",
"properties": {
"custom-1": "foo",
"custom-2": "bar"
}
}