Apigee · Schema

ListAppGroupsResponse

Response for listing app groups.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
appGroups array
nextPageToken string Token for retrieving the next page.
totalSize integer Total number of app groups.
View JSON Schema on GitHub

JSON Schema

apigee-listappgroupsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAppGroupsResponse",
  "title": "ListAppGroupsResponse",
  "type": "object",
  "description": "Response for listing app groups.",
  "properties": {
    "appGroups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppGroup"
      }
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token for retrieving the next page."
    },
    "totalSize": {
      "type": "integer",
      "format": "int32",
      "description": "Total number of app groups."
    }
  }
}