Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d1abb83
Remove extra "Message is delivered to destination."
radekholy24 Oct 6, 2021
f2034cd
Fix rendering of default response to Receive SMS operation
radekholy24 Oct 12, 2021
f414ec6
Remove body of response 204 to GET /byon/contacts/v1
radekholy24 Oct 12, 2021
f55b049
Set the schema of error responses in SMS API
radekholy24 Oct 12, 2021
ef3cfa2
Remove response 201 from POST /messaging/v1/sms
radekholy24 Oct 12, 2021
74ae301
Remove response 201 from GET /messaging/v1/sms
radekholy24 Oct 12, 2021
7f3876c
Make example of apiKeys in ApiKeyResponse an array
radekholy24 Nov 27, 2021
f8ddb3a
Add ApiKeyHeader to all operations in SMS API
radekholy24 Dec 16, 2021
89d54c7
Make example of enabled in IpRestrictionEntity a boolean
radekholy24 Nov 27, 2021
3c5b863
Fix description of apiKeys in ApiKeyResponse
radekholy24 Nov 27, 2021
d786367
Fix links to the Account Keys API specification
radekholy24 Nov 27, 2021
e08459c
Fix links to the Account IP Restriction API specification
radekholy24 Nov 27, 2021
4d14a11
Make validity in SMS API a number
radekholy24 Dec 14, 2021
620eb68
Turn possible values of callbackMethod in SMS API into an enum
radekholy24 Dec 14, 2021
ed251df
Make example of originMCC in InboundMessage a string
radekholy24 Dec 16, 2021
b31b44a
Make example of originTtId in InboundMessage a string
radekholy24 Dec 16, 2021
39bb426
Remove the wrapping array from the response to GET https://api.tyntec…
radekholy24 Dec 16, 2021
3f87b86
Fix the description of friendlyName in ContactEntity
radekholy24 Dec 16, 2021
7386509
Remove the wrapping array from the response to GET https://api.tyntec…
radekholy24 Dec 16, 2021
6a94fdf
Make example of ttid in RestMessagePart a string
radekholy24 Dec 16, 2021
cfc01dc
Remove extra 2XX responses from SMS API
radekholy24 Dec 16, 2021
65a85b1
Remove extra */* contents from responses in SMS API
radekholy24 Dec 16, 2021
54066b7
Make example of originMNC in InboundMessage a string
radekholy24 Dec 16, 2021
c14018d
Change the scheme of the response to GET https://api.tyntec.com/byon/…
radekholy24 Dec 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions account/ip-restriction/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ info:
name: tyntec API Support
url: http://www.tyntec.com/support
email: support@tyntec.com
x-repository: https://github.com/tyntec/api-collection/blob/master/tts
x-repository: https://github.com/tyntec/api-collection/blob/master/account/ip-restriction
x-major-version: v1
servers:
- url: https://api.tyntec.com/
Expand Down Expand Up @@ -138,7 +138,7 @@ components:
enabled:
type: boolean
description: Whitelisting restriction is enabled or not for this account
example: "false"
example: false
whiteList:
type: array
items:
Expand Down
14 changes: 5 additions & 9 deletions account/keys/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
name: tyntec API Support
url: http://www.tyntec.com/support
email: support@tyntec.com
x-repository: https://github.com/tyntec/api-collection/blob/master/tts
x-repository: https://github.com/tyntec/api-collection/blob/master/account/keys
x-major-version: v1
servers:
- url: https://api.tyntec.com/
Expand Down Expand Up @@ -187,14 +187,10 @@ components:
key:
type: string
description: The authentication token
description: If the whitelist restriction is enabled or not for this account.
example: |
[
{
"id": "deadbeef-b111-111f-8c6e-05f1fd3f825c",
"key": "ABCDEFG1234567890ABCDEFG1234567890"
}
]
description: The keys that are active for this account
example:
- id: deadbeef-b111-111f-8c6e-05f1fd3f825c
key: ABCDEFG1234567890ABCDEFG1234567890
Problem:
type: object
additionalProperties: true
Expand Down
Loading