action apicurio_get_group_by_id { label: "Get a group by the specified ID." description: "Returns a group using the specified id.\n\nThis operation can fail for the following reasons:\n\n* No group exists with the specified ID (HTTP error `404`)\n* A server error occurred (HTTP error `500`)" provider: apicurio method: GET path: "/groups/{groupId}" encoding: json output: { type: "object" required: ["createdBy", "createdOn", "description", "id", "modifiedBy", "modifiedOn", "properties"] properties: { createdBy: { type: "string" } createdOn: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } modifiedBy: { type: "string" } modifiedOn: { type: "string" format: "date-time" } properties: { type: "object" } } } }