Skip to content

Commit edaa9e6

Browse files
committed
Travis update: Feb 2023 (Build 716)
[skip ci]
1 parent 2de5e38 commit edaa9e6

4 files changed

Lines changed: 6 additions & 0 deletions

File tree

docs/DeliveryReportApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ Name | Type | Description | Notes
7575
| Status code | Description | Response headers |
7676
|-------------|-------------|------------------|
7777
**200** | Delivery report success | - |
78+
**401** | Unauthorized | - |
7879
**404** | If no such message exists or you do not have access to the particular message | - |
7980

8081
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

docs/OmnimessageApi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Name | Type | Description | Notes
7676
| Status code | Description | Response headers |
7777
|-------------|-------------|------------------|
7878
**202** | Scheduled omnimessage successfully cancelled | - |
79+
**401** | Unauthorized | - |
7980
**404** | If the omnimessage has already been sent or no such message exists | - |
8081

8182
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -149,6 +150,7 @@ Name | Type | Description | Notes
149150
|-------------|-------------|------------------|
150151
**201** | Omnimessage success response | - |
151152
**400** | Invalid input | - |
153+
**401** | Unauthorized | - |
152154

153155
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
154156

messente_api/api/delivery_report_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ def retrieve_delivery_report_with_http_info(self, omnimessage_id, **kwargs): #
151151

152152
response_types_map = {
153153
200: "DeliveryReportResponse",
154+
401: "ErrorOmnichannel",
154155
404: "ErrorOmnichannel",
155156
}
156157

messente_api/api/omnimessage_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ def cancel_scheduled_message_with_http_info(self, omnimessage_id, **kwargs): #
151151

152152
response_types_map = {
153153
202: "object",
154+
401: "ErrorOmnichannel",
154155
404: "ErrorOmnichannel",
155156
}
156157

@@ -290,6 +291,7 @@ def send_omnimessage_with_http_info(self, omnimessage, **kwargs): # noqa: E501
290291
response_types_map = {
291292
201: "OmniMessageCreateSuccessResponse",
292293
400: "ErrorOmnichannel",
294+
401: "ErrorOmnichannel",
293295
}
294296

295297
return self.api_client.call_api(

0 commit comments

Comments
 (0)