Properties
| Name | Type | Description |
|---|---|---|
| id | string | A unique identifier for the group. |
| displayName | string | The name of the group. |
| orgId | string | The ID of the organization to which this group belongs. |
| created | string | The timestamp indicating creation date/time of group |
| lastModified | string | The timestamp indicating lastModification time of group |
| memberSize | number | |
| members | array | An array of members |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GroupResponse",
"title": "GroupResponse",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1NDSU1fR1JPVVAvMjUxMDRiZTAtZjg3NC00MzQzLTk2MDctZGYwMmRmMzdiNWMxOjM0OGFkYjgxLTI4ZjktNGFiNS1iMmQ2LWU5YjQ5NGU3MmEwNg",
"description": "A unique identifier for the group."
},
"displayName": {
"type": "string",
"example": "Sales Group",
"description": "The name of the group."
},
"orgId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8zNDhhZGI4MS0yOGY5LTRhYjUtYjJkNi1lOWI0OTRlNzJhMDY",
"description": "The ID of the organization to which this group belongs."
},
"created": {
"type": "string",
"example": "2022-02-17T02:13:29.706Z",
"description": "The timestamp indicating creation date/time of group"
},
"lastModified": {
"type": "string",
"example": "2022-02-17T02:13:29.706Z",
"description": "The timestamp indicating lastModification time of group"
},
"memberSize": {
"type": "number",
"example": 1
},
"members": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Member"
},
"description": "An array of members"
}
}
}