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.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.
linkRelationships
linkdata.relationships.environment
individualent onlyThese relationships are only available for accounts on an Ent tier.The 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/<account>" }, "data": { "type": "accounts", "id": "<account>" } }, "owners": { "links": { "related": "/v1/accounts/<account>/groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/owners" } }, "users": { "links": { "related": "/v1/accounts/<account>/groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/users" } }, "licenses": { "links": { "related": "/v1/accounts/<account>/groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/licenses" } }, "machines": { "links": { "related": "/v1/accounts/<account>/groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d/machines" } } }, "links": { "self": "/v1/accounts/<account>/groups/db7e99e1-dd6d-447b-98e8-ceb354d9d85d" } }}