linkThe group object
Below you will find the various attributes for the group resource. Groups can be utilized to associate multiple resources with each other, as well as to define collective resource limits.
linkAttributes
linkdata.attributes.name
stringThe name of the group.
linkdata.attributes.maxUsers
integerThe maximum number of users the group can have, collectively. When
null, an unlimited number of users may be in the group. Must be a number greater than 0.linkdata.attributes.maxLicenses
integerThe maximum number of licenses the group can have, collectively. When
null, an unlimited number of licenses may be in the group. Must be a number greater than 0.linkdata.attributes.maxMachines
integerThe maximum number of machines the group can have, collectively. When
null, an unlimited number of machines may be in the group. Must be a number greater than 0.linkdata.attributes.created
timestamp (iso8601)read onlyWhen the group was created.
linkdata.attributes.updated
timestamp (iso8601)read onlyWhen the group was last updated.
linkRelationships
linkdata.relationships.account
individualThe account that the group belongs to.
linkdata.relationships.environment
individualThe environment that the group belongs to.
linkdata.relationships.owners
collectionprotectedProtected relationships are only available for bearers with an admin, environment or product role.The owners of the group.
linkdata.relationships.users
collectionprotectedProtected relationships are only available for bearers with an admin, environment or product role.The users that are in the group.
linkdata.relationships.licenses
collectionprotectedProtected relationships are only available for bearers with an admin, environment or product role.The licenses that are in the group.
linkdata.relationships.machines
collectionprotectedProtected relationships are only available for bearers with an admin, environment or product role.The machines that are in the group.
Example object
{ "data": { "id": "db7e99e1-dd6d-447b-98e8-ceb354d9d85d", "type": "groups", "attributes": { "name": "Example Group", "maxUsers": null, "maxLicenses": null, "maxMachines": null, "metadata": {}, "created": "2022-03-07T14:13:02.959Z", "updated": "2022-03-07T14:13:02.959Z" }, "relationships": { "account": { "links": { "related": "/v1/accounts/" }, "data": { "type": "accounts", "id": "" } }, "owners": { "links": { "related": "/v1/accounts//groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/owners" } }, "users": { "links": { "related": "/v1/accounts//groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/users" } }, "licenses": { "links": { "related": "/v1/accounts//groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/licenses" } }, "machines": { "links": { "related": "/v1/accounts//groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/machines" } } }, "links": { "self": "/v1/accounts//groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d" } }}