Webex · Schema

ListHuntGroupObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the hunt group.
name string Unique name for the hunt group.
locationName string Name of the location for the hunt group.
locationId string ID of location for hunt group.
phoneNumber string Primary phone number of the hunt group.
extension string Primary phone extension of the hunt group.
routingPrefix string Routing prefix of location.
esn string Routing prefix + extension of a person or workspace.
enabled boolean Whether or not the hunt group is enabled.
View JSON Schema on GitHub

JSON Schema

webex-listhuntgroupobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListHuntGroupObject",
  "title": "ListHuntGroupObject",
  "type": "object",
  "required": [
    "id",
    "name",
    "locationName",
    "locationId",
    "enabled"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0hVTlRfR1JPVVAvYUhaaFpUTjJNRzh5YjBBMk5EazBNVEk1Tnk1cGJuUXhNQzVpWTJ4a0xuZGxZbVY0TG1OdmJRPT0",
      "description": "A unique identifier for the hunt group."
    },
    "name": {
      "type": "string",
      "example": "5714328359",
      "description": "Unique name for the hunt group."
    },
    "locationName": {
      "type": "string",
      "example": "WXCSIVDKCPAPIC4S1",
      "description": "Name of the location for the hunt group."
    },
    "locationId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzMxMTYx",
      "description": "ID of location for hunt group."
    },
    "phoneNumber": {
      "type": "string",
      "example": "+15558675309",
      "description": "Primary phone number of the hunt group."
    },
    "extension": {
      "type": "string",
      "example": "7781",
      "description": "Primary phone extension of the hunt group."
    },
    "routingPrefix": {
      "type": "string",
      "example": "1234",
      "description": "Routing prefix of location."
    },
    "esn": {
      "type": "string",
      "example": "12347781",
      "description": "Routing prefix + extension of a person or workspace."
    },
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Whether or not the hunt group is enabled."
    }
  }
}