fix: Updates cloud-api.swagger phoneNumberList endpoint.

This commit is contained in:
Дамян Минков 2022-05-04 11:13:20 -05:00
parent e1706e7868
commit 3ab47ff96c
1 changed files with 11 additions and 16 deletions

View File

@ -85,6 +85,7 @@ paths:
200:
description: "successful operation"
schema:
type: array
$ref: "#/definitions/PhoneNumberListAnswer"
securityDefinitions:
token:
@ -131,21 +132,15 @@ definitions:
description: "Answer with Phone number list and additional information"
type: "object"
properties:
message:
type: "string"
description: "General message"
numbersEnabled:
type: "boolean"
description: "Determines if the numbers are available"
numbers:
type: object
additionalProperties:
type: "array"
items:
type: "string"
example:
US: ["+1.123.456.7890"]
UK: ["+44.123.456.7890"]
countryCode:
type: string
formattedNumber:
type: string
tollFree:
type: boolean
example:
{"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
{"countryCode":"UK","tollFree":true,"formattedNumber":"+44 123 456 7890"}
externalDocs:
description: "Find out more about the Jitsi Cloud API"