Webex · Schema

CallerReputationProviderProvidersResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
providers array List of caller reputation providers.
View JSON Schema on GitHub

JSON Schema

webex-callerreputationproviderprovidersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallerReputationProviderProvidersResponse",
  "title": "CallerReputationProviderProvidersResponse",
  "type": "object",
  "properties": {
    "providers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CallerReputationProviderProvider"
      },
      "description": "List of caller reputation providers."
    }
  },
  "example": {
    "providers": [
      {
        "id": "provider-123",
        "enabled": true,
        "name": "Acme Reputation Provider",
        "regions": [
          {
            "id": "region-1",
            "name": "US East",
            "type": "primary",
            "visible": true,
            "environmentType": "production"
          }
        ]
      }
    ]
  }
}