github.com/grokify/go-ringcentral-client@v0.3.31/codegen/specs-engagevoice_v3.0.0/openapi-spec_dial-groups.json (about)

     1  {
     2      "openapi":"3.0.0",
     3      "info":{
     4         "description":"",
     5         "version":"1.0",
     6         "title":"RingCentral Engage Voice API",
     7         "termsOfService":"https://developers.ringcentral.com"
     8      },
     9      "tags":[
    10         {
    11            "name":"Dial Groups"
    12         }
    13      ],
    14      "paths":{
    15         "/admin/accounts/{accountId}/dialGroups":{
    16            "get":{
    17               "tags":[
    18                  "Dial Groups"
    19               ],
    20               "summary":"Get Dial Groups",
    21               "description":"Returns a listing of dial groups for an account",
    22               "operationId":"getDialGroups",
    23               "parameters":[
    24                  {
    25                     "name":"accountId",
    26                     "in":"path",
    27                     "required":true,
    28                     "schema":{
    29                        "type":"string"
    30                     }
    31                  }
    32               ],
    33               "responses":{
    34                  "200":{
    35                     "description":"Success",
    36                     "content":{
    37                        "application/json":{
    38                           "schema":{
    39                              "type":"array",
    40                              "items":{
    41                                 "$ref":"#/components/schemas/DialGroup"
    42                              }
    43                           }
    44                        }
    45                     }
    46                  }
    47               }
    48            }
    49         }
    50      },
    51      "servers":[
    52         {
    53            "url":"https://portal.vacd.biz/api/v1"
    54         }
    55      ],
    56      "components":{
    57         "securitySchemes":{
    58            "bearerAuth":{
    59               "type":"http",
    60               "scheme":"bearer"
    61            }
    62         },
    63         "schemas":{
    64            "DialGroup":{
    65               "type":"object",
    66               "properties":{
    67                  "permissions":{
    68                     "type":"array",
    69                     "items":{
    70                        "type":"object"
    71                     }
    72                  },
    73                  "agentsReady":{
    74                    "type":"integer"
    75                  },
    76                  "billingKey":{"type":"string"},
    77                  "dialGroupId":{
    78                     "type":"integer",
    79                     "format":"int64"
    80                  },
    81                  "dialGroupName":{
    82                     "type":"string"
    83                  },
    84                  "dialGroupDesc":{
    85                     "type":"string"
    86                  },
    87                  "dialMode":{
    88                     "type":"string",
    89                     "description":"Can be `PREDICTIVE`"
    90                  },
    91                  "isActive":{
    92                     "type":"boolean"
    93                  },
    94                  "enableAgentFilter":{
    95                    "type":"boolean"
    96                  },
    97                  "hciEnabled":{
    98                     "type":"string",
    99                     "description":"Can be `DISABLED`"
   100                  },
   101                  "maxPorts":{
   102                     "type":"integer"
   103                  },
   104                  "outdialServerGroupId":{"type":"integer"},
   105                  "realTimeAgentData":{"type":"boolean"},
   106                  "agentDialGroupMembers":{
   107                     "type":"object"
   108                  }
   109               }
   110            }
   111         }
   112      }
   113   }