Updating documentation
This commit is contained in:
parent
a69b382190
commit
11213d0e50
|
@ -235,6 +235,7 @@ paths:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/TurnToken'
|
$ref: '#/components/schemas/TurnToken'
|
||||||
|
deprecated: true
|
||||||
security:
|
security:
|
||||||
- authenticatedAccount: []
|
- authenticatedAccount: []
|
||||||
/v1/accounts/username_hash/{usernameHash}:
|
/v1/accounts/username_hash/{usernameHash}:
|
||||||
|
@ -1164,6 +1165,31 @@ paths:
|
||||||
description: Ratelimited.
|
description: Ratelimited.
|
||||||
security:
|
security:
|
||||||
- authenticatedAccount: []
|
- authenticatedAccount: []
|
||||||
|
/v1/calling/relays:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- Calling
|
||||||
|
summary: Get 1:1 calling relay options for the client
|
||||||
|
description: |
|
||||||
|
Get 1:1 relay addresses in IpV4, Ipv6, and URL formats.
|
||||||
|
operationId: getCallingRelays
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: '`JSON` with call endpoints.'
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/TurnToken'
|
||||||
|
"400":
|
||||||
|
description: Invalid get call endpoint request.
|
||||||
|
"401":
|
||||||
|
description: Account authentication check failed.
|
||||||
|
"422":
|
||||||
|
description: Invalid request format.
|
||||||
|
"429":
|
||||||
|
description: Ratelimited.
|
||||||
|
security:
|
||||||
|
- authenticatedAccount: []
|
||||||
/v1/certificate/delivery:
|
/v1/certificate/delivery:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
|
@ -2886,6 +2912,12 @@ components:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
|
urlsWithIps:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
hostname:
|
||||||
|
type: string
|
||||||
AccountIdentifierResponse:
|
AccountIdentifierResponse:
|
||||||
required:
|
required:
|
||||||
- uuid
|
- uuid
|
||||||
|
|
Loading…
Reference in New Issue