v1

latestOpenAPI 3.0.2Apache 2.02026-07-136548173.9 KB
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.

idstring required

An ID of a single artifact group.

descriptionstring required
createdBystring required
createdOnstring date-time required
modifiedBystring required
modifiedOnstring date-time required
propertiesProperties required

User-defined name-value pairs. Name and value must be strings.

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"
  }
}