Amazon WorkMail · JSON Structure

Workmail List Group Members Request Structure

ListGroupMembersRequest schema from Amazon WorkMail API

Type: object Properties: 4 Required: 2
Business CommunicationCalendarEmailExchangeEnterprise

ListGroupMembersRequest is a JSON Structure definition published by Amazon WorkMail, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

OrganizationId GroupId NextToken MaxResults

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "OrganizationId",
    "GroupId"
  ],
  "name": "ListGroupMembersRequest",
  "properties": {
    "OrganizationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationId"
        },
        {
          "description": "The identifier for the organization under which the group exists."
        }
      ]
    },
    "GroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkMailIdentifier"
        },
        {
          "description": "The identifier for the group to which the members (users or groups) are associated."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": " The token to use to retrieve the next page of results. The first call does not contain any tokens."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxResults"
        },
        {
          "description": "The maximum number of results to return in a single call."
        }
      ]
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-structure/workmail-list-group-members-request-structure.json",
  "description": "ListGroupMembersRequest schema from Amazon WorkMail API"
}