|
@@ -85,6 +85,7 @@ paths:
|
85
|
85
|
200:
|
86
|
86
|
description: "successful operation"
|
87
|
87
|
schema:
|
|
88
|
+ type: array
|
88
|
89
|
$ref: "#/definitions/PhoneNumberListAnswer"
|
89
|
90
|
securityDefinitions:
|
90
|
91
|
token:
|
|
@@ -130,22 +131,16 @@ definitions:
|
130
|
131
|
PhoneNumberListAnswer:
|
131
|
132
|
description: "Answer with Phone number list and additional information"
|
132
|
133
|
type: "object"
|
133
|
|
- properties:
|
134
|
|
- message:
|
135
|
|
- type: "string"
|
136
|
|
- description: "General message"
|
137
|
|
- numbersEnabled:
|
138
|
|
- type: "boolean"
|
139
|
|
- description: "Determines if the numbers are available"
|
140
|
|
- numbers:
|
141
|
|
- type: object
|
142
|
|
- additionalProperties:
|
143
|
|
- type: "array"
|
144
|
|
- items:
|
145
|
|
- type: "string"
|
146
|
|
- example:
|
147
|
|
- US: ["+1.123.456.7890"]
|
148
|
|
- UK: ["+44.123.456.7890"]
|
|
134
|
+ properties:
|
|
135
|
+ countryCode:
|
|
136
|
+ type: string
|
|
137
|
+ formattedNumber:
|
|
138
|
+ type: string
|
|
139
|
+ tollFree:
|
|
140
|
+ type: boolean
|
|
141
|
+ example:
|
|
142
|
+ {"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
|
|
143
|
+ {"countryCode":"UK","tollFree":true,"formattedNumber":"+44 123 456 7890"}
|
149
|
144
|
|
150
|
145
|
externalDocs:
|
151
|
146
|
description: "Find out more about the Jitsi Cloud API"
|