@sendmux/cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +72 -5
- package/dist/base-command.d.ts +2 -0
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +27 -0
- package/dist/commands/mailbox/batch-delete-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-delete-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-delete-messages.js +7 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-get-messages.js +7 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-update-messages.js +7 -0
- package/dist/commands/mailbox/count-messages.d.ts +142 -0
- package/dist/commands/mailbox/count-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/count-messages.js +7 -0
- package/dist/commands/mailbox/create-folder.d.ts +26 -0
- package/dist/commands/mailbox/create-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/create-folder.js +7 -0
- package/dist/commands/mailbox/delete-folder.d.ts +38 -0
- package/dist/commands/mailbox/delete-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-folder.js +7 -0
- package/dist/commands/mailbox/delete-message.d.ts +44 -0
- package/dist/commands/mailbox/delete-message.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-message.js +7 -0
- package/dist/commands/mailbox/folders/list.d.ts +17 -1
- package/dist/commands/mailbox/folders/list.d.ts.map +1 -1
- package/dist/commands/mailbox/folders/list.js +5 -4
- package/dist/commands/mailbox/get-changes.d.ts +82 -0
- package/dist/commands/mailbox/get-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-changes.js +7 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder-changes.js +7 -0
- package/dist/commands/mailbox/get-folder.d.ts +38 -0
- package/dist/commands/mailbox/get-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder.js +7 -0
- package/dist/commands/mailbox/get-identity.d.ts +26 -0
- package/dist/commands/mailbox/get-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/get-identity.js +7 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts +44 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/get-message-attachment.js +7 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-quota-changes.js +7 -0
- package/dist/commands/mailbox/get-session.d.ts +32 -0
- package/dist/commands/mailbox/get-session.d.ts.map +1 -0
- package/dist/commands/mailbox/get-session.js +7 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission-changes.js +7 -0
- package/dist/commands/mailbox/get-submission.d.ts +38 -0
- package/dist/commands/mailbox/get-submission.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission.js +7 -0
- package/dist/commands/mailbox/get-thread-content.d.ts +112 -0
- package/dist/commands/mailbox/get-thread-content.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread-content.js +7 -0
- package/dist/commands/mailbox/get-thread.d.ts +38 -0
- package/dist/commands/mailbox/get-thread.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread.js +7 -0
- package/dist/commands/mailbox/list-body.d.ts +53 -0
- package/dist/commands/mailbox/list-body.d.ts.map +1 -0
- package/dist/commands/mailbox/list-body.js +7 -0
- package/dist/commands/mailbox/list-content.d.ts +91 -0
- package/dist/commands/mailbox/list-content.d.ts.map +1 -0
- package/dist/commands/mailbox/list-content.js +7 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts +40 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts.map +1 -0
- package/dist/commands/mailbox/list-granted-mailboxes.js +7 -0
- package/dist/commands/mailbox/list-identities.d.ts +40 -0
- package/dist/commands/mailbox/list-identities.d.ts.map +1 -0
- package/dist/commands/mailbox/list-identities.js +7 -0
- package/dist/commands/mailbox/list-quotas.d.ts +80 -0
- package/dist/commands/mailbox/list-quotas.d.ts.map +1 -0
- package/dist/commands/mailbox/list-quotas.js +7 -0
- package/dist/commands/mailbox/list-submissions.d.ts +91 -0
- package/dist/commands/mailbox/list-submissions.d.ts.map +1 -0
- package/dist/commands/mailbox/list-submissions.js +7 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts +53 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/list-thread-messages.js +7 -0
- package/dist/commands/mailbox/list-threads.d.ts +89 -0
- package/dist/commands/mailbox/list-threads.d.ts.map +1 -0
- package/dist/commands/mailbox/list-threads.js +7 -0
- package/dist/commands/mailbox/list-usage.d.ts +32 -0
- package/dist/commands/mailbox/list-usage.d.ts.map +1 -0
- package/dist/commands/mailbox/list-usage.js +7 -0
- package/dist/commands/mailbox/me/get.d.ts +13 -2
- package/dist/commands/mailbox/me/get.d.ts.map +1 -1
- package/dist/commands/mailbox/me/get.js +5 -4
- package/dist/commands/mailbox/messages/get.d.ts +16 -2
- package/dist/commands/mailbox/messages/get.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/get.js +5 -4
- package/dist/commands/mailbox/messages/list.d.ts +84 -1
- package/dist/commands/mailbox/messages/list.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/list.js +5 -4
- package/dist/commands/mailbox/query-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/query-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-folder-changes.js +7 -0
- package/dist/commands/mailbox/query-message-changes.d.ts +176 -0
- package/dist/commands/mailbox/query-message-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-message-changes.js +7 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts +150 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts.map +1 -0
- package/dist/commands/mailbox/search-message-snippets.js +7 -0
- package/dist/commands/mailbox/send-message.d.ts +33 -0
- package/dist/commands/mailbox/send-message.d.ts.map +1 -0
- package/dist/commands/mailbox/send-message.js +7 -0
- package/dist/commands/mailbox/stream-events.d.ts +60 -0
- package/dist/commands/mailbox/stream-events.d.ts.map +1 -0
- package/dist/commands/mailbox/stream-events.js +7 -0
- package/dist/commands/mailbox/update-folder.d.ts +38 -0
- package/dist/commands/mailbox/update-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/update-folder.js +7 -0
- package/dist/commands/mailbox/update-identity.d.ts +26 -0
- package/dist/commands/mailbox/update-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/update-identity.js +7 -0
- package/dist/commands/mailbox/update-message.d.ts +38 -0
- package/dist/commands/mailbox/update-message.d.ts.map +1 -0
- package/dist/commands/mailbox/update-message.js +7 -0
- package/dist/commands/mailbox/upload-attachment.d.ts +32 -0
- package/dist/commands/mailbox/upload-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/upload-attachment.js +7 -0
- package/dist/commands/management/activate-provider.d.ts +33 -0
- package/dist/commands/management/activate-provider.d.ts.map +1 -0
- package/dist/commands/management/activate-provider.js +7 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts +26 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/create-domain.d.ts +27 -0
- package/dist/commands/management/create-domain.d.ts.map +1 -0
- package/dist/commands/management/create-domain.js +7 -0
- package/dist/commands/management/create-mailbox-key.d.ts +33 -0
- package/dist/commands/management/create-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox-key.js +7 -0
- package/dist/commands/management/create-mailbox.d.ts +27 -0
- package/dist/commands/management/create-mailbox.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox.js +7 -0
- package/dist/commands/management/create-provider.d.ts +27 -0
- package/dist/commands/management/create-provider.d.ts.map +1 -0
- package/dist/commands/management/create-provider.js +7 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts +27 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/create-webhook.d.ts +27 -0
- package/dist/commands/management/create-webhook.d.ts.map +1 -0
- package/dist/commands/management/create-webhook.js +7 -0
- package/dist/commands/management/deactivate-provider.d.ts +33 -0
- package/dist/commands/management/deactivate-provider.d.ts.map +1 -0
- package/dist/commands/management/deactivate-provider.js +7 -0
- package/dist/commands/management/delete-domain.d.ts +26 -0
- package/dist/commands/management/delete-domain.d.ts.map +1 -0
- package/dist/commands/management/delete-domain.js +7 -0
- package/dist/commands/management/delete-mailbox-key.d.ts +32 -0
- package/dist/commands/management/delete-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox-key.js +7 -0
- package/dist/commands/management/delete-mailbox.d.ts +26 -0
- package/dist/commands/management/delete-mailbox.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox.js +7 -0
- package/dist/commands/management/delete-provider.d.ts +26 -0
- package/dist/commands/management/delete-provider.d.ts.map +1 -0
- package/dist/commands/management/delete-provider.js +7 -0
- package/dist/commands/management/delete-webhook.d.ts +26 -0
- package/dist/commands/management/delete-webhook.d.ts.map +1 -0
- package/dist/commands/management/delete-webhook.js +7 -0
- package/dist/commands/management/domains/get.d.ts +9 -1
- package/dist/commands/management/domains/get.d.ts.map +1 -1
- package/dist/commands/management/domains/get.js +5 -4
- package/dist/commands/management/domains/list.d.ts +11 -1
- package/dist/commands/management/domains/list.d.ts.map +1 -1
- package/dist/commands/management/domains/list.js +5 -4
- package/dist/commands/management/get-delivery-payload.d.ts +32 -0
- package/dist/commands/management/get-delivery-payload.d.ts.map +1 -0
- package/dist/commands/management/get-delivery-payload.js +7 -0
- package/dist/commands/management/get-domain-filters.d.ts +32 -0
- package/dist/commands/management/get-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/get-domain-filters.js +7 -0
- package/dist/commands/management/get-domain-zone-file.d.ts +26 -0
- package/dist/commands/management/get-domain-zone-file.d.ts.map +1 -0
- package/dist/commands/management/get-domain-zone-file.js +7 -0
- package/dist/commands/management/get-email-log.d.ts +32 -0
- package/dist/commands/management/get-email-log.d.ts.map +1 -0
- package/dist/commands/management/get-email-log.js +7 -0
- package/dist/commands/management/get-email-metrics.d.ts +52 -0
- package/dist/commands/management/get-email-metrics.d.ts.map +1 -0
- package/dist/commands/management/get-email-metrics.js +7 -0
- package/dist/commands/management/get-inbox-log.d.ts +26 -0
- package/dist/commands/management/get-inbox-log.d.ts.map +1 -0
- package/dist/commands/management/get-inbox-log.js +7 -0
- package/dist/commands/management/get-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/get-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox-filters.js +7 -0
- package/dist/commands/management/get-mailbox.d.ts +32 -0
- package/dist/commands/management/get-mailbox.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox.js +7 -0
- package/dist/commands/management/get-provider-limits.d.ts +20 -0
- package/dist/commands/management/get-provider-limits.d.ts.map +1 -0
- package/dist/commands/management/get-provider-limits.js +7 -0
- package/dist/commands/management/get-provider-stats.d.ts +20 -0
- package/dist/commands/management/get-provider-stats.d.ts.map +1 -0
- package/dist/commands/management/get-provider-stats.js +7 -0
- package/dist/commands/management/get-provider-usage.d.ts +20 -0
- package/dist/commands/management/get-provider-usage.d.ts.map +1 -0
- package/dist/commands/management/get-provider-usage.js +7 -0
- package/dist/commands/management/get-provider.d.ts +32 -0
- package/dist/commands/management/get-provider.d.ts.map +1 -0
- package/dist/commands/management/get-provider.js +7 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts +20 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/get-spend-summary.d.ts +27 -0
- package/dist/commands/management/get-spend-summary.d.ts.map +1 -0
- package/dist/commands/management/get-spend-summary.js +7 -0
- package/dist/commands/management/get-webhook.d.ts +32 -0
- package/dist/commands/management/get-webhook.d.ts.map +1 -0
- package/dist/commands/management/get-webhook.js +7 -0
- package/dist/commands/management/list-balance.d.ts +20 -0
- package/dist/commands/management/list-balance.d.ts.map +1 -0
- package/dist/commands/management/list-balance.js +7 -0
- package/dist/commands/management/list-delivery.d.ts +54 -0
- package/dist/commands/management/list-delivery.d.ts.map +1 -0
- package/dist/commands/management/list-delivery.js +7 -0
- package/dist/commands/management/list-email-logs.d.ts +65 -0
- package/dist/commands/management/list-email-logs.d.ts.map +1 -0
- package/dist/commands/management/list-email-logs.js +7 -0
- package/dist/commands/management/list-inbox-logs.d.ts +65 -0
- package/dist/commands/management/list-inbox-logs.d.ts.map +1 -0
- package/dist/commands/management/list-inbox-logs.js +7 -0
- package/dist/commands/management/list-transactions.d.ts +41 -0
- package/dist/commands/management/list-transactions.d.ts.map +1 -0
- package/dist/commands/management/list-transactions.js +7 -0
- package/dist/commands/management/list-webhooks.d.ts +34 -0
- package/dist/commands/management/list-webhooks.d.ts.map +1 -0
- package/dist/commands/management/list-webhooks.js +7 -0
- package/dist/commands/management/mailboxes/list.d.ts +15 -1
- package/dist/commands/management/mailboxes/list.d.ts.map +1 -1
- package/dist/commands/management/mailboxes/list.js +5 -4
- package/dist/commands/management/providers/list.d.ts +19 -1
- package/dist/commands/management/providers/list.d.ts.map +1 -1
- package/dist/commands/management/providers/list.js +5 -4
- package/dist/commands/management/request-sending-account-limit-increase.d.ts +27 -0
- package/dist/commands/management/request-sending-account-limit-increase.d.ts.map +1 -0
- package/dist/commands/management/request-sending-account-limit-increase.js +7 -0
- package/dist/commands/management/resume-mailbox.d.ts +33 -0
- package/dist/commands/management/resume-mailbox.d.ts.map +1 -0
- package/dist/commands/management/resume-mailbox.js +7 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts +33 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts.map +1 -0
- package/dist/commands/management/rotate-webhook-secret.js +7 -0
- package/dist/commands/management/set-domain-filters.d.ts +32 -0
- package/dist/commands/management/set-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/set-domain-filters.js +7 -0
- package/dist/commands/management/set-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/set-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/set-mailbox-filters.js +7 -0
- package/dist/commands/management/suspend-mailbox.d.ts +33 -0
- package/dist/commands/management/suspend-mailbox.d.ts.map +1 -0
- package/dist/commands/management/suspend-mailbox.js +7 -0
- package/dist/commands/management/test-provider.d.ts +33 -0
- package/dist/commands/management/test-provider.d.ts.map +1 -0
- package/dist/commands/management/test-provider.js +7 -0
- package/dist/commands/management/test-webhook.d.ts +33 -0
- package/dist/commands/management/test-webhook.d.ts.map +1 -0
- package/dist/commands/management/test-webhook.js +7 -0
- package/dist/commands/management/update-domain.d.ts +32 -0
- package/dist/commands/management/update-domain.d.ts.map +1 -0
- package/dist/commands/management/update-domain.js +7 -0
- package/dist/commands/management/update-mailbox.d.ts +32 -0
- package/dist/commands/management/update-mailbox.d.ts.map +1 -0
- package/dist/commands/management/update-mailbox.js +7 -0
- package/dist/commands/management/update-provider.d.ts +32 -0
- package/dist/commands/management/update-provider.d.ts.map +1 -0
- package/dist/commands/management/update-provider.js +7 -0
- package/dist/commands/management/update-webhook.d.ts +32 -0
- package/dist/commands/management/update-webhook.d.ts.map +1 -0
- package/dist/commands/management/update-webhook.js +7 -0
- package/dist/commands/management/verify-domain.d.ts +26 -0
- package/dist/commands/management/verify-domain.d.ts.map +1 -0
- package/dist/commands/management/verify-domain.js +7 -0
- package/dist/commands/sending/get-open-api-spec.d.ts +26 -0
- package/dist/commands/sending/get-open-api-spec.d.ts.map +1 -0
- package/dist/commands/sending/get-open-api-spec.js +7 -0
- package/dist/commands/sending/send/batch.d.ts +8 -2
- package/dist/commands/sending/send/batch.d.ts.map +1 -1
- package/dist/commands/sending/send/batch.js +5 -4
- package/dist/commands/sending/send.d.ts +8 -2
- package/dist/commands/sending/send.d.ts.map +1 -1
- package/dist/commands/sending/send.js +5 -4
- package/dist/generated/operations.d.ts +1710 -25
- package/dist/generated/operations.d.ts.map +1 -1
- package/dist/generated/operations.js +2012 -316
- package/dist/operation-flags.d.ts +3 -3
- package/dist/operation-flags.d.ts.map +1 -1
- package/dist/operation-flags.js +132 -21
- package/dist/operation-runner.d.ts.map +1 -1
- package/dist/operation-runner.js +65 -7
- package/dist/operation-types.d.ts +19 -0
- package/dist/operation-types.d.ts.map +1 -1
- package/oclif.manifest.json +13474 -238
- package/package.json +2 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// This file is generated by scripts/generate-cli.mjs
|
|
2
2
|
export const operations = {
|
|
3
3
|
mailboxBatchDeleteMessages: {
|
|
4
|
+
"bodyKind": "json",
|
|
4
5
|
"command": "mailbox:batch-delete-messages",
|
|
5
6
|
"description": "Batch delete mailbox messages",
|
|
6
7
|
"headerParams": [],
|
|
@@ -8,12 +9,22 @@ export const operations = {
|
|
|
8
9
|
"operationId": "mailboxBatchDeleteMessages",
|
|
9
10
|
"path": "/mailbox/messages:batch-delete",
|
|
10
11
|
"pathParams": [],
|
|
11
|
-
"queryParams": [
|
|
12
|
+
"queryParams": [
|
|
13
|
+
{
|
|
14
|
+
"name": "mailbox_id",
|
|
15
|
+
"required": false,
|
|
16
|
+
"schema": {
|
|
17
|
+
"type": "string"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"responseKind": "json",
|
|
12
22
|
"requestBodyRequired": false,
|
|
13
23
|
"requiredKeyKind": "mailbox",
|
|
14
24
|
"surface": "mailbox"
|
|
15
25
|
},
|
|
16
26
|
mailboxBatchGetMessages: {
|
|
27
|
+
"bodyKind": "json",
|
|
17
28
|
"command": "mailbox:batch-get-messages",
|
|
18
29
|
"description": "Batch get mailbox messages",
|
|
19
30
|
"headerParams": [],
|
|
@@ -21,12 +32,22 @@ export const operations = {
|
|
|
21
32
|
"operationId": "mailboxBatchGetMessages",
|
|
22
33
|
"path": "/mailbox/messages:batch-get",
|
|
23
34
|
"pathParams": [],
|
|
24
|
-
"queryParams": [
|
|
35
|
+
"queryParams": [
|
|
36
|
+
{
|
|
37
|
+
"name": "mailbox_id",
|
|
38
|
+
"required": false,
|
|
39
|
+
"schema": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"responseKind": "json",
|
|
25
45
|
"requestBodyRequired": false,
|
|
26
46
|
"requiredKeyKind": "mailbox",
|
|
27
47
|
"surface": "mailbox"
|
|
28
48
|
},
|
|
29
49
|
mailboxBatchUpdateMessages: {
|
|
50
|
+
"bodyKind": "json",
|
|
30
51
|
"command": "mailbox:batch-update-messages",
|
|
31
52
|
"description": "Batch update mailbox messages",
|
|
32
53
|
"headerParams": [],
|
|
@@ -34,12 +55,22 @@ export const operations = {
|
|
|
34
55
|
"operationId": "mailboxBatchUpdateMessages",
|
|
35
56
|
"path": "/mailbox/messages:batch-update",
|
|
36
57
|
"pathParams": [],
|
|
37
|
-
"queryParams": [
|
|
58
|
+
"queryParams": [
|
|
59
|
+
{
|
|
60
|
+
"name": "mailbox_id",
|
|
61
|
+
"required": false,
|
|
62
|
+
"schema": {
|
|
63
|
+
"type": "string"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"responseKind": "json",
|
|
38
68
|
"requestBodyRequired": false,
|
|
39
69
|
"requiredKeyKind": "mailbox",
|
|
40
70
|
"surface": "mailbox"
|
|
41
71
|
},
|
|
42
72
|
mailboxCountMessages: {
|
|
73
|
+
"bodyKind": "none",
|
|
43
74
|
"command": "mailbox:count-messages",
|
|
44
75
|
"description": "Count mailbox messages",
|
|
45
76
|
"headerParams": [],
|
|
@@ -50,86 +81,154 @@ export const operations = {
|
|
|
50
81
|
"queryParams": [
|
|
51
82
|
{
|
|
52
83
|
"name": "folder_id",
|
|
53
|
-
"required": false
|
|
84
|
+
"required": false,
|
|
85
|
+
"schema": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
}
|
|
54
88
|
},
|
|
55
89
|
{
|
|
56
90
|
"name": "thread_id",
|
|
57
|
-
"required": false
|
|
91
|
+
"required": false,
|
|
92
|
+
"schema": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
}
|
|
58
95
|
},
|
|
59
96
|
{
|
|
60
97
|
"name": "q",
|
|
61
|
-
"required": false
|
|
98
|
+
"required": false,
|
|
99
|
+
"schema": {
|
|
100
|
+
"type": "string"
|
|
101
|
+
}
|
|
62
102
|
},
|
|
63
103
|
{
|
|
64
104
|
"name": "from",
|
|
65
|
-
"required": false
|
|
105
|
+
"required": false,
|
|
106
|
+
"schema": {
|
|
107
|
+
"type": "string"
|
|
108
|
+
}
|
|
66
109
|
},
|
|
67
110
|
{
|
|
68
111
|
"name": "to",
|
|
69
|
-
"required": false
|
|
112
|
+
"required": false,
|
|
113
|
+
"schema": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
}
|
|
70
116
|
},
|
|
71
117
|
{
|
|
72
118
|
"name": "cc",
|
|
73
|
-
"required": false
|
|
119
|
+
"required": false,
|
|
120
|
+
"schema": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
}
|
|
74
123
|
},
|
|
75
124
|
{
|
|
76
125
|
"name": "bcc",
|
|
77
|
-
"required": false
|
|
126
|
+
"required": false,
|
|
127
|
+
"schema": {
|
|
128
|
+
"type": "string"
|
|
129
|
+
}
|
|
78
130
|
},
|
|
79
131
|
{
|
|
80
132
|
"name": "subject",
|
|
81
|
-
"required": false
|
|
133
|
+
"required": false,
|
|
134
|
+
"schema": {
|
|
135
|
+
"type": "string"
|
|
136
|
+
}
|
|
82
137
|
},
|
|
83
138
|
{
|
|
84
139
|
"name": "body",
|
|
85
|
-
"required": false
|
|
140
|
+
"required": false,
|
|
141
|
+
"schema": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
86
144
|
},
|
|
87
145
|
{
|
|
88
146
|
"name": "header_name",
|
|
89
|
-
"required": false
|
|
147
|
+
"required": false,
|
|
148
|
+
"schema": {
|
|
149
|
+
"type": "string"
|
|
150
|
+
}
|
|
90
151
|
},
|
|
91
152
|
{
|
|
92
153
|
"name": "header_value",
|
|
93
|
-
"required": false
|
|
154
|
+
"required": false,
|
|
155
|
+
"schema": {
|
|
156
|
+
"type": "string"
|
|
157
|
+
}
|
|
94
158
|
},
|
|
95
159
|
{
|
|
96
160
|
"name": "min_size_bytes",
|
|
97
|
-
"required": false
|
|
161
|
+
"required": false,
|
|
162
|
+
"schema": {
|
|
163
|
+
"type": "integer",
|
|
164
|
+
"minimum": 0
|
|
165
|
+
}
|
|
98
166
|
},
|
|
99
167
|
{
|
|
100
168
|
"name": "max_size_bytes",
|
|
101
|
-
"required": false
|
|
169
|
+
"required": false,
|
|
170
|
+
"schema": {
|
|
171
|
+
"type": "integer",
|
|
172
|
+
"minimum": 0
|
|
173
|
+
}
|
|
102
174
|
},
|
|
103
175
|
{
|
|
104
176
|
"name": "keyword",
|
|
105
|
-
"required": false
|
|
177
|
+
"required": false,
|
|
178
|
+
"schema": {
|
|
179
|
+
"type": "string"
|
|
180
|
+
}
|
|
106
181
|
},
|
|
107
182
|
{
|
|
108
183
|
"name": "not_keyword",
|
|
109
|
-
"required": false
|
|
184
|
+
"required": false,
|
|
185
|
+
"schema": {
|
|
186
|
+
"type": "string"
|
|
187
|
+
}
|
|
110
188
|
},
|
|
111
189
|
{
|
|
112
190
|
"name": "after",
|
|
113
|
-
"required": false
|
|
191
|
+
"required": false,
|
|
192
|
+
"schema": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
}
|
|
114
195
|
},
|
|
115
196
|
{
|
|
116
197
|
"name": "before",
|
|
117
|
-
"required": false
|
|
198
|
+
"required": false,
|
|
199
|
+
"schema": {
|
|
200
|
+
"type": "string"
|
|
201
|
+
}
|
|
118
202
|
},
|
|
119
203
|
{
|
|
120
204
|
"name": "has_attachment",
|
|
121
|
-
"required": false
|
|
205
|
+
"required": false,
|
|
206
|
+
"schema": {
|
|
207
|
+
"type": "boolean"
|
|
208
|
+
}
|
|
122
209
|
},
|
|
123
210
|
{
|
|
124
211
|
"name": "is_unread",
|
|
125
|
-
"required": false
|
|
212
|
+
"required": false,
|
|
213
|
+
"schema": {
|
|
214
|
+
"type": "boolean"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "mailbox_id",
|
|
219
|
+
"required": false,
|
|
220
|
+
"schema": {
|
|
221
|
+
"type": "string"
|
|
222
|
+
}
|
|
126
223
|
}
|
|
127
224
|
],
|
|
225
|
+
"responseKind": "json",
|
|
128
226
|
"requestBodyRequired": false,
|
|
129
227
|
"requiredKeyKind": "mailbox",
|
|
130
228
|
"surface": "mailbox"
|
|
131
229
|
},
|
|
132
230
|
mailboxCreateFolder: {
|
|
231
|
+
"bodyKind": "json",
|
|
133
232
|
"command": "mailbox:create-folder",
|
|
134
233
|
"description": "Create a mailbox folder",
|
|
135
234
|
"headerParams": [],
|
|
@@ -137,18 +236,31 @@ export const operations = {
|
|
|
137
236
|
"operationId": "mailboxCreateFolder",
|
|
138
237
|
"path": "/mailbox/folders",
|
|
139
238
|
"pathParams": [],
|
|
140
|
-
"queryParams": [
|
|
239
|
+
"queryParams": [
|
|
240
|
+
{
|
|
241
|
+
"name": "mailbox_id",
|
|
242
|
+
"required": false,
|
|
243
|
+
"schema": {
|
|
244
|
+
"type": "string"
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"responseKind": "json",
|
|
141
249
|
"requestBodyRequired": false,
|
|
142
250
|
"requiredKeyKind": "mailbox",
|
|
143
251
|
"surface": "mailbox"
|
|
144
252
|
},
|
|
145
253
|
mailboxDeleteFolder: {
|
|
254
|
+
"bodyKind": "none",
|
|
146
255
|
"command": "mailbox:delete-folder",
|
|
147
256
|
"description": "Delete a mailbox folder",
|
|
148
257
|
"headerParams": [
|
|
149
258
|
{
|
|
150
259
|
"name": "If-Match",
|
|
151
|
-
"required": false
|
|
260
|
+
"required": false,
|
|
261
|
+
"schema": {
|
|
262
|
+
"type": "string"
|
|
263
|
+
}
|
|
152
264
|
}
|
|
153
265
|
],
|
|
154
266
|
"method": "delete",
|
|
@@ -157,21 +269,37 @@ export const operations = {
|
|
|
157
269
|
"pathParams": [
|
|
158
270
|
{
|
|
159
271
|
"name": "folder_id",
|
|
160
|
-
"required": true
|
|
272
|
+
"required": true,
|
|
273
|
+
"schema": {
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
161
276
|
}
|
|
162
277
|
],
|
|
163
|
-
"queryParams": [
|
|
278
|
+
"queryParams": [
|
|
279
|
+
{
|
|
280
|
+
"name": "mailbox_id",
|
|
281
|
+
"required": false,
|
|
282
|
+
"schema": {
|
|
283
|
+
"type": "string"
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"responseKind": "json",
|
|
164
288
|
"requestBodyRequired": false,
|
|
165
289
|
"requiredKeyKind": "mailbox",
|
|
166
290
|
"surface": "mailbox"
|
|
167
291
|
},
|
|
168
292
|
mailboxDeleteMessage: {
|
|
293
|
+
"bodyKind": "none",
|
|
169
294
|
"command": "mailbox:delete-message",
|
|
170
295
|
"description": "Delete a mailbox message",
|
|
171
296
|
"headerParams": [
|
|
172
297
|
{
|
|
173
298
|
"name": "If-Match",
|
|
174
|
-
"required": false
|
|
299
|
+
"required": false,
|
|
300
|
+
"schema": {
|
|
301
|
+
"type": "string"
|
|
302
|
+
}
|
|
175
303
|
}
|
|
176
304
|
],
|
|
177
305
|
"method": "delete",
|
|
@@ -180,20 +308,35 @@ export const operations = {
|
|
|
180
308
|
"pathParams": [
|
|
181
309
|
{
|
|
182
310
|
"name": "message_id",
|
|
183
|
-
"required": true
|
|
311
|
+
"required": true,
|
|
312
|
+
"schema": {
|
|
313
|
+
"type": "string"
|
|
314
|
+
}
|
|
184
315
|
}
|
|
185
316
|
],
|
|
186
317
|
"queryParams": [
|
|
187
318
|
{
|
|
188
319
|
"name": "permanent",
|
|
189
|
-
"required": false
|
|
320
|
+
"required": false,
|
|
321
|
+
"schema": {
|
|
322
|
+
"type": "boolean"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "mailbox_id",
|
|
327
|
+
"required": false,
|
|
328
|
+
"schema": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
}
|
|
190
331
|
}
|
|
191
332
|
],
|
|
333
|
+
"responseKind": "json",
|
|
192
334
|
"requestBodyRequired": false,
|
|
193
335
|
"requiredKeyKind": "mailbox",
|
|
194
336
|
"surface": "mailbox"
|
|
195
337
|
},
|
|
196
338
|
mailboxGetChanges: {
|
|
339
|
+
"bodyKind": "none",
|
|
197
340
|
"command": "mailbox:get-changes",
|
|
198
341
|
"description": "Get mailbox changes",
|
|
199
342
|
"headerParams": [],
|
|
@@ -204,52 +347,93 @@ export const operations = {
|
|
|
204
347
|
"queryParams": [
|
|
205
348
|
{
|
|
206
349
|
"name": "since_state",
|
|
207
|
-
"required": false
|
|
350
|
+
"required": false,
|
|
351
|
+
"schema": {
|
|
352
|
+
"type": "string"
|
|
353
|
+
}
|
|
208
354
|
},
|
|
209
355
|
{
|
|
210
356
|
"name": "types",
|
|
211
|
-
"required": false
|
|
357
|
+
"required": false,
|
|
358
|
+
"schema": {
|
|
359
|
+
"type": "string"
|
|
360
|
+
}
|
|
212
361
|
},
|
|
213
362
|
{
|
|
214
363
|
"name": "messages_since_state",
|
|
215
|
-
"required": false
|
|
364
|
+
"required": false,
|
|
365
|
+
"schema": {
|
|
366
|
+
"type": "string"
|
|
367
|
+
}
|
|
216
368
|
},
|
|
217
369
|
{
|
|
218
370
|
"name": "folders_since_state",
|
|
219
|
-
"required": false
|
|
371
|
+
"required": false,
|
|
372
|
+
"schema": {
|
|
373
|
+
"type": "string"
|
|
374
|
+
}
|
|
220
375
|
},
|
|
221
376
|
{
|
|
222
377
|
"name": "threads_since_state",
|
|
223
|
-
"required": false
|
|
378
|
+
"required": false,
|
|
379
|
+
"schema": {
|
|
380
|
+
"type": "string"
|
|
381
|
+
}
|
|
224
382
|
},
|
|
225
383
|
{
|
|
226
384
|
"name": "submissions_since_state",
|
|
227
|
-
"required": false
|
|
385
|
+
"required": false,
|
|
386
|
+
"schema": {
|
|
387
|
+
"type": "string"
|
|
388
|
+
}
|
|
228
389
|
},
|
|
229
390
|
{
|
|
230
391
|
"name": "identities_since_state",
|
|
231
|
-
"required": false
|
|
392
|
+
"required": false,
|
|
393
|
+
"schema": {
|
|
394
|
+
"type": "string"
|
|
395
|
+
}
|
|
232
396
|
},
|
|
233
397
|
{
|
|
234
398
|
"name": "quotas_since_state",
|
|
235
|
-
"required": false
|
|
399
|
+
"required": false,
|
|
400
|
+
"schema": {
|
|
401
|
+
"type": "string"
|
|
402
|
+
}
|
|
236
403
|
},
|
|
237
404
|
{
|
|
238
405
|
"name": "limit",
|
|
239
|
-
"required": false
|
|
406
|
+
"required": false,
|
|
407
|
+
"schema": {
|
|
408
|
+
"type": "integer",
|
|
409
|
+
"minimum": 1,
|
|
410
|
+
"maximum": 500
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "mailbox_id",
|
|
415
|
+
"required": false,
|
|
416
|
+
"schema": {
|
|
417
|
+
"type": "string"
|
|
418
|
+
}
|
|
240
419
|
}
|
|
241
420
|
],
|
|
421
|
+
"responseKind": "json",
|
|
242
422
|
"requestBodyRequired": false,
|
|
243
423
|
"requiredKeyKind": "mailbox",
|
|
244
424
|
"surface": "mailbox"
|
|
245
425
|
},
|
|
246
426
|
mailboxGetFolder: {
|
|
427
|
+
"bodyKind": "none",
|
|
247
428
|
"command": "mailbox:get-folder",
|
|
248
429
|
"description": "Get a mailbox folder",
|
|
249
430
|
"headerParams": [
|
|
250
431
|
{
|
|
251
432
|
"name": "If-None-Match",
|
|
252
|
-
"required": false
|
|
433
|
+
"required": false,
|
|
434
|
+
"schema": {
|
|
435
|
+
"type": "string"
|
|
436
|
+
}
|
|
253
437
|
}
|
|
254
438
|
],
|
|
255
439
|
"method": "get",
|
|
@@ -258,15 +442,28 @@ export const operations = {
|
|
|
258
442
|
"pathParams": [
|
|
259
443
|
{
|
|
260
444
|
"name": "folder_id",
|
|
261
|
-
"required": true
|
|
445
|
+
"required": true,
|
|
446
|
+
"schema": {
|
|
447
|
+
"type": "string"
|
|
448
|
+
}
|
|
262
449
|
}
|
|
263
450
|
],
|
|
264
|
-
"queryParams": [
|
|
451
|
+
"queryParams": [
|
|
452
|
+
{
|
|
453
|
+
"name": "mailbox_id",
|
|
454
|
+
"required": false,
|
|
455
|
+
"schema": {
|
|
456
|
+
"type": "string"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"responseKind": "json",
|
|
265
461
|
"requestBodyRequired": false,
|
|
266
462
|
"requiredKeyKind": "mailbox",
|
|
267
463
|
"surface": "mailbox"
|
|
268
464
|
},
|
|
269
465
|
mailboxGetFolderChanges: {
|
|
466
|
+
"bodyKind": "none",
|
|
270
467
|
"command": "mailbox:get-folder-changes",
|
|
271
468
|
"description": "Get folder changes",
|
|
272
469
|
"headerParams": [],
|
|
@@ -277,18 +474,35 @@ export const operations = {
|
|
|
277
474
|
"queryParams": [
|
|
278
475
|
{
|
|
279
476
|
"name": "since_state",
|
|
280
|
-
"required": false
|
|
477
|
+
"required": false,
|
|
478
|
+
"schema": {
|
|
479
|
+
"type": "string"
|
|
480
|
+
}
|
|
281
481
|
},
|
|
282
482
|
{
|
|
283
483
|
"name": "limit",
|
|
284
|
-
"required": false
|
|
484
|
+
"required": false,
|
|
485
|
+
"schema": {
|
|
486
|
+
"type": "integer",
|
|
487
|
+
"minimum": 1,
|
|
488
|
+
"maximum": 500
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "mailbox_id",
|
|
493
|
+
"required": false,
|
|
494
|
+
"schema": {
|
|
495
|
+
"type": "string"
|
|
496
|
+
}
|
|
285
497
|
}
|
|
286
498
|
],
|
|
499
|
+
"responseKind": "json",
|
|
287
500
|
"requestBodyRequired": false,
|
|
288
501
|
"requiredKeyKind": "mailbox",
|
|
289
502
|
"surface": "mailbox"
|
|
290
503
|
},
|
|
291
504
|
mailboxGetIdentity: {
|
|
505
|
+
"bodyKind": "none",
|
|
292
506
|
"command": "mailbox:get-identity",
|
|
293
507
|
"description": "Get mailbox sender identity",
|
|
294
508
|
"headerParams": [],
|
|
@@ -296,36 +510,62 @@ export const operations = {
|
|
|
296
510
|
"operationId": "mailboxGetIdentity",
|
|
297
511
|
"path": "/mailbox/identity",
|
|
298
512
|
"pathParams": [],
|
|
299
|
-
"queryParams": [
|
|
513
|
+
"queryParams": [
|
|
514
|
+
{
|
|
515
|
+
"name": "mailbox_id",
|
|
516
|
+
"required": false,
|
|
517
|
+
"schema": {
|
|
518
|
+
"type": "string"
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
],
|
|
522
|
+
"responseKind": "json",
|
|
300
523
|
"requestBodyRequired": false,
|
|
301
524
|
"requiredKeyKind": "mailbox",
|
|
302
525
|
"surface": "mailbox"
|
|
303
526
|
},
|
|
304
527
|
mailboxGetMe: {
|
|
528
|
+
"bodyKind": "none",
|
|
305
529
|
"command": "mailbox:me:get",
|
|
306
530
|
"description": "Self-introspect the calling mailbox",
|
|
307
531
|
"headerParams": [
|
|
308
532
|
{
|
|
309
533
|
"name": "If-None-Match",
|
|
310
|
-
"required": false
|
|
534
|
+
"required": false,
|
|
535
|
+
"schema": {
|
|
536
|
+
"type": "string"
|
|
537
|
+
}
|
|
311
538
|
}
|
|
312
539
|
],
|
|
313
540
|
"method": "get",
|
|
314
541
|
"operationId": "mailboxGetMe",
|
|
315
542
|
"path": "/mailbox/me",
|
|
316
543
|
"pathParams": [],
|
|
317
|
-
"queryParams": [
|
|
544
|
+
"queryParams": [
|
|
545
|
+
{
|
|
546
|
+
"name": "mailbox_id",
|
|
547
|
+
"required": false,
|
|
548
|
+
"schema": {
|
|
549
|
+
"type": "string"
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"responseKind": "json",
|
|
318
554
|
"requestBodyRequired": false,
|
|
319
555
|
"requiredKeyKind": "mailbox",
|
|
320
556
|
"surface": "mailbox"
|
|
321
557
|
},
|
|
322
558
|
mailboxGetMessage: {
|
|
559
|
+
"bodyKind": "none",
|
|
323
560
|
"command": "mailbox:messages:get",
|
|
324
561
|
"description": "Get a mailbox message",
|
|
325
562
|
"headerParams": [
|
|
326
563
|
{
|
|
327
564
|
"name": "If-None-Match",
|
|
328
|
-
"required": false
|
|
565
|
+
"required": false,
|
|
566
|
+
"schema": {
|
|
567
|
+
"type": "string"
|
|
568
|
+
}
|
|
329
569
|
}
|
|
330
570
|
],
|
|
331
571
|
"method": "get",
|
|
@@ -334,21 +574,37 @@ export const operations = {
|
|
|
334
574
|
"pathParams": [
|
|
335
575
|
{
|
|
336
576
|
"name": "message_id",
|
|
337
|
-
"required": true
|
|
577
|
+
"required": true,
|
|
578
|
+
"schema": {
|
|
579
|
+
"type": "string"
|
|
580
|
+
}
|
|
338
581
|
}
|
|
339
582
|
],
|
|
340
|
-
"queryParams": [
|
|
583
|
+
"queryParams": [
|
|
584
|
+
{
|
|
585
|
+
"name": "mailbox_id",
|
|
586
|
+
"required": false,
|
|
587
|
+
"schema": {
|
|
588
|
+
"type": "string"
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"responseKind": "json",
|
|
341
593
|
"requestBodyRequired": false,
|
|
342
594
|
"requiredKeyKind": "mailbox",
|
|
343
595
|
"surface": "mailbox"
|
|
344
596
|
},
|
|
345
597
|
mailboxGetMessageAttachment: {
|
|
598
|
+
"bodyKind": "none",
|
|
346
599
|
"command": "mailbox:get-message-attachment",
|
|
347
600
|
"description": "Download a message attachment",
|
|
348
601
|
"headerParams": [
|
|
349
602
|
{
|
|
350
603
|
"name": "Range",
|
|
351
|
-
"required": false
|
|
604
|
+
"required": false,
|
|
605
|
+
"schema": {
|
|
606
|
+
"type": "string"
|
|
607
|
+
}
|
|
352
608
|
}
|
|
353
609
|
],
|
|
354
610
|
"method": "get",
|
|
@@ -357,19 +613,35 @@ export const operations = {
|
|
|
357
613
|
"pathParams": [
|
|
358
614
|
{
|
|
359
615
|
"name": "message_id",
|
|
360
|
-
"required": true
|
|
616
|
+
"required": true,
|
|
617
|
+
"schema": {
|
|
618
|
+
"type": "string"
|
|
619
|
+
}
|
|
361
620
|
},
|
|
362
621
|
{
|
|
363
622
|
"name": "attachment_id",
|
|
364
|
-
"required": true
|
|
623
|
+
"required": true,
|
|
624
|
+
"schema": {
|
|
625
|
+
"type": "string"
|
|
626
|
+
}
|
|
365
627
|
}
|
|
366
628
|
],
|
|
367
|
-
"queryParams": [
|
|
629
|
+
"queryParams": [
|
|
630
|
+
{
|
|
631
|
+
"name": "mailbox_id",
|
|
632
|
+
"required": false,
|
|
633
|
+
"schema": {
|
|
634
|
+
"type": "string"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
],
|
|
638
|
+
"responseKind": "json",
|
|
368
639
|
"requestBodyRequired": false,
|
|
369
640
|
"requiredKeyKind": "mailbox",
|
|
370
641
|
"surface": "mailbox"
|
|
371
642
|
},
|
|
372
643
|
mailboxGetQuotaChanges: {
|
|
644
|
+
"bodyKind": "none",
|
|
373
645
|
"command": "mailbox:get-quota-changes",
|
|
374
646
|
"description": "Get quota changes",
|
|
375
647
|
"headerParams": [],
|
|
@@ -380,42 +652,75 @@ export const operations = {
|
|
|
380
652
|
"queryParams": [
|
|
381
653
|
{
|
|
382
654
|
"name": "since_state",
|
|
383
|
-
"required": false
|
|
655
|
+
"required": false,
|
|
656
|
+
"schema": {
|
|
657
|
+
"type": "string"
|
|
658
|
+
}
|
|
384
659
|
},
|
|
385
660
|
{
|
|
386
661
|
"name": "limit",
|
|
387
|
-
"required": false
|
|
662
|
+
"required": false,
|
|
663
|
+
"schema": {
|
|
664
|
+
"type": "integer",
|
|
665
|
+
"minimum": 1,
|
|
666
|
+
"maximum": 500
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "mailbox_id",
|
|
671
|
+
"required": false,
|
|
672
|
+
"schema": {
|
|
673
|
+
"type": "string"
|
|
674
|
+
}
|
|
388
675
|
}
|
|
389
676
|
],
|
|
677
|
+
"responseKind": "json",
|
|
390
678
|
"requestBodyRequired": false,
|
|
391
679
|
"requiredKeyKind": "mailbox",
|
|
392
680
|
"surface": "mailbox"
|
|
393
681
|
},
|
|
394
682
|
mailboxGetSession: {
|
|
683
|
+
"bodyKind": "none",
|
|
395
684
|
"command": "mailbox:get-session",
|
|
396
685
|
"description": "Get mailbox API session",
|
|
397
686
|
"headerParams": [
|
|
398
687
|
{
|
|
399
688
|
"name": "If-None-Match",
|
|
400
|
-
"required": false
|
|
689
|
+
"required": false,
|
|
690
|
+
"schema": {
|
|
691
|
+
"type": "string"
|
|
692
|
+
}
|
|
401
693
|
}
|
|
402
694
|
],
|
|
403
695
|
"method": "get",
|
|
404
696
|
"operationId": "mailboxGetSession",
|
|
405
697
|
"path": "/mailbox/session",
|
|
406
698
|
"pathParams": [],
|
|
407
|
-
"queryParams": [
|
|
699
|
+
"queryParams": [
|
|
700
|
+
{
|
|
701
|
+
"name": "mailbox_id",
|
|
702
|
+
"required": false,
|
|
703
|
+
"schema": {
|
|
704
|
+
"type": "string"
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
],
|
|
708
|
+
"responseKind": "json",
|
|
408
709
|
"requestBodyRequired": false,
|
|
409
710
|
"requiredKeyKind": "mailbox",
|
|
410
711
|
"surface": "mailbox"
|
|
411
712
|
},
|
|
412
713
|
mailboxGetSubmission: {
|
|
714
|
+
"bodyKind": "none",
|
|
413
715
|
"command": "mailbox:get-submission",
|
|
414
716
|
"description": "Get a mailbox submission",
|
|
415
717
|
"headerParams": [
|
|
416
718
|
{
|
|
417
719
|
"name": "If-None-Match",
|
|
418
|
-
"required": false
|
|
720
|
+
"required": false,
|
|
721
|
+
"schema": {
|
|
722
|
+
"type": "string"
|
|
723
|
+
}
|
|
419
724
|
}
|
|
420
725
|
],
|
|
421
726
|
"method": "get",
|
|
@@ -424,15 +729,28 @@ export const operations = {
|
|
|
424
729
|
"pathParams": [
|
|
425
730
|
{
|
|
426
731
|
"name": "submission_id",
|
|
427
|
-
"required": true
|
|
732
|
+
"required": true,
|
|
733
|
+
"schema": {
|
|
734
|
+
"type": "string"
|
|
735
|
+
}
|
|
428
736
|
}
|
|
429
737
|
],
|
|
430
|
-
"queryParams": [
|
|
738
|
+
"queryParams": [
|
|
739
|
+
{
|
|
740
|
+
"name": "mailbox_id",
|
|
741
|
+
"required": false,
|
|
742
|
+
"schema": {
|
|
743
|
+
"type": "string"
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
"responseKind": "json",
|
|
431
748
|
"requestBodyRequired": false,
|
|
432
749
|
"requiredKeyKind": "mailbox",
|
|
433
750
|
"surface": "mailbox"
|
|
434
751
|
},
|
|
435
752
|
mailboxGetSubmissionChanges: {
|
|
753
|
+
"bodyKind": "none",
|
|
436
754
|
"command": "mailbox:get-submission-changes",
|
|
437
755
|
"description": "Get submission changes",
|
|
438
756
|
"headerParams": [],
|
|
@@ -443,24 +761,44 @@ export const operations = {
|
|
|
443
761
|
"queryParams": [
|
|
444
762
|
{
|
|
445
763
|
"name": "since_state",
|
|
446
|
-
"required": false
|
|
764
|
+
"required": false,
|
|
765
|
+
"schema": {
|
|
766
|
+
"type": "string"
|
|
767
|
+
}
|
|
447
768
|
},
|
|
448
769
|
{
|
|
449
770
|
"name": "limit",
|
|
450
|
-
"required": false
|
|
771
|
+
"required": false,
|
|
772
|
+
"schema": {
|
|
773
|
+
"type": "integer",
|
|
774
|
+
"minimum": 1,
|
|
775
|
+
"maximum": 500
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"name": "mailbox_id",
|
|
780
|
+
"required": false,
|
|
781
|
+
"schema": {
|
|
782
|
+
"type": "string"
|
|
783
|
+
}
|
|
451
784
|
}
|
|
452
785
|
],
|
|
786
|
+
"responseKind": "json",
|
|
453
787
|
"requestBodyRequired": false,
|
|
454
788
|
"requiredKeyKind": "mailbox",
|
|
455
789
|
"surface": "mailbox"
|
|
456
790
|
},
|
|
457
791
|
mailboxGetThread: {
|
|
792
|
+
"bodyKind": "none",
|
|
458
793
|
"command": "mailbox:get-thread",
|
|
459
794
|
"description": "Get a mailbox thread",
|
|
460
795
|
"headerParams": [
|
|
461
796
|
{
|
|
462
797
|
"name": "If-None-Match",
|
|
463
|
-
"required": false
|
|
798
|
+
"required": false,
|
|
799
|
+
"schema": {
|
|
800
|
+
"type": "string"
|
|
801
|
+
}
|
|
464
802
|
}
|
|
465
803
|
],
|
|
466
804
|
"method": "get",
|
|
@@ -469,21 +807,37 @@ export const operations = {
|
|
|
469
807
|
"pathParams": [
|
|
470
808
|
{
|
|
471
809
|
"name": "thread_id",
|
|
472
|
-
"required": true
|
|
810
|
+
"required": true,
|
|
811
|
+
"schema": {
|
|
812
|
+
"type": "string"
|
|
813
|
+
}
|
|
473
814
|
}
|
|
474
815
|
],
|
|
475
|
-
"queryParams": [
|
|
816
|
+
"queryParams": [
|
|
817
|
+
{
|
|
818
|
+
"name": "mailbox_id",
|
|
819
|
+
"required": false,
|
|
820
|
+
"schema": {
|
|
821
|
+
"type": "string"
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"responseKind": "json",
|
|
476
826
|
"requestBodyRequired": false,
|
|
477
827
|
"requiredKeyKind": "mailbox",
|
|
478
828
|
"surface": "mailbox"
|
|
479
829
|
},
|
|
480
830
|
mailboxGetThreadContent: {
|
|
831
|
+
"bodyKind": "none",
|
|
481
832
|
"command": "mailbox:get-thread-content",
|
|
482
833
|
"description": "Get clean thread content",
|
|
483
834
|
"headerParams": [
|
|
484
835
|
{
|
|
485
836
|
"name": "If-None-Match",
|
|
486
|
-
"required": false
|
|
837
|
+
"required": false,
|
|
838
|
+
"schema": {
|
|
839
|
+
"type": "string"
|
|
840
|
+
}
|
|
487
841
|
}
|
|
488
842
|
],
|
|
489
843
|
"method": "get",
|
|
@@ -492,66 +846,136 @@ export const operations = {
|
|
|
492
846
|
"pathParams": [
|
|
493
847
|
{
|
|
494
848
|
"name": "thread_id",
|
|
495
|
-
"required": true
|
|
849
|
+
"required": true,
|
|
850
|
+
"schema": {
|
|
851
|
+
"type": "string"
|
|
852
|
+
}
|
|
496
853
|
}
|
|
497
854
|
],
|
|
498
855
|
"queryParams": [
|
|
499
856
|
{
|
|
500
857
|
"name": "part",
|
|
501
|
-
"required": false
|
|
858
|
+
"required": false,
|
|
859
|
+
"schema": {
|
|
860
|
+
"type": "string",
|
|
861
|
+
"enum": [
|
|
862
|
+
"auto",
|
|
863
|
+
"text",
|
|
864
|
+
"html"
|
|
865
|
+
]
|
|
866
|
+
}
|
|
502
867
|
},
|
|
503
868
|
{
|
|
504
869
|
"name": "max_body_chars",
|
|
505
|
-
"required": false
|
|
870
|
+
"required": false,
|
|
871
|
+
"schema": {
|
|
872
|
+
"type": "integer",
|
|
873
|
+
"minimum": 1,
|
|
874
|
+
"maximum": 1000000
|
|
875
|
+
}
|
|
506
876
|
},
|
|
507
877
|
{
|
|
508
878
|
"name": "strip_signature",
|
|
509
|
-
"required": false
|
|
879
|
+
"required": false,
|
|
880
|
+
"schema": {
|
|
881
|
+
"type": "boolean"
|
|
882
|
+
}
|
|
510
883
|
},
|
|
511
884
|
{
|
|
512
885
|
"name": "strip_quotes",
|
|
513
|
-
"required": false
|
|
886
|
+
"required": false,
|
|
887
|
+
"schema": {
|
|
888
|
+
"type": "boolean"
|
|
889
|
+
}
|
|
514
890
|
},
|
|
515
891
|
{
|
|
516
892
|
"name": "include_links",
|
|
517
|
-
"required": false
|
|
893
|
+
"required": false,
|
|
894
|
+
"schema": {
|
|
895
|
+
"type": "boolean"
|
|
896
|
+
}
|
|
518
897
|
},
|
|
519
898
|
{
|
|
520
899
|
"name": "include_html",
|
|
521
|
-
"required": false
|
|
900
|
+
"required": false,
|
|
901
|
+
"schema": {
|
|
902
|
+
"type": "boolean"
|
|
903
|
+
}
|
|
522
904
|
},
|
|
523
905
|
{
|
|
524
906
|
"name": "include_headers",
|
|
525
|
-
"required": false
|
|
907
|
+
"required": false,
|
|
908
|
+
"schema": {
|
|
909
|
+
"type": "string",
|
|
910
|
+
"enum": [
|
|
911
|
+
"none",
|
|
912
|
+
"selected",
|
|
913
|
+
"full"
|
|
914
|
+
]
|
|
915
|
+
}
|
|
526
916
|
},
|
|
527
917
|
{
|
|
528
918
|
"name": "include_attachments",
|
|
529
|
-
"required": false
|
|
919
|
+
"required": false,
|
|
920
|
+
"schema": {
|
|
921
|
+
"type": "string",
|
|
922
|
+
"enum": [
|
|
923
|
+
"none",
|
|
924
|
+
"metadata"
|
|
925
|
+
]
|
|
926
|
+
}
|
|
530
927
|
},
|
|
531
928
|
{
|
|
532
929
|
"name": "cursor",
|
|
533
|
-
"required": false
|
|
930
|
+
"required": false,
|
|
931
|
+
"schema": {
|
|
932
|
+
"type": "string"
|
|
933
|
+
}
|
|
534
934
|
},
|
|
535
935
|
{
|
|
536
936
|
"name": "limit",
|
|
537
|
-
"required": false
|
|
937
|
+
"required": false,
|
|
938
|
+
"schema": {
|
|
939
|
+
"type": "integer",
|
|
940
|
+
"minimum": 1,
|
|
941
|
+
"maximum": 100
|
|
942
|
+
}
|
|
538
943
|
},
|
|
539
944
|
{
|
|
540
945
|
"name": "sort",
|
|
541
|
-
"required": false
|
|
946
|
+
"required": false,
|
|
947
|
+
"schema": {
|
|
948
|
+
"type": "string",
|
|
949
|
+
"enum": [
|
|
950
|
+
"asc",
|
|
951
|
+
"desc"
|
|
952
|
+
]
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"name": "mailbox_id",
|
|
957
|
+
"required": false,
|
|
958
|
+
"schema": {
|
|
959
|
+
"type": "string"
|
|
960
|
+
}
|
|
542
961
|
}
|
|
543
962
|
],
|
|
963
|
+
"responseKind": "json",
|
|
544
964
|
"requestBodyRequired": false,
|
|
545
965
|
"requiredKeyKind": "mailbox",
|
|
546
966
|
"surface": "mailbox"
|
|
547
967
|
},
|
|
548
968
|
mailboxListBody: {
|
|
969
|
+
"bodyKind": "none",
|
|
549
970
|
"command": "mailbox:list-body",
|
|
550
971
|
"description": "Get raw message body",
|
|
551
972
|
"headerParams": [
|
|
552
973
|
{
|
|
553
974
|
"name": "If-None-Match",
|
|
554
|
-
"required": false
|
|
975
|
+
"required": false,
|
|
976
|
+
"schema": {
|
|
977
|
+
"type": "string"
|
|
978
|
+
}
|
|
555
979
|
}
|
|
556
980
|
],
|
|
557
981
|
"method": "get",
|
|
@@ -560,30 +984,58 @@ export const operations = {
|
|
|
560
984
|
"pathParams": [
|
|
561
985
|
{
|
|
562
986
|
"name": "message_id",
|
|
563
|
-
"required": true
|
|
987
|
+
"required": true,
|
|
988
|
+
"schema": {
|
|
989
|
+
"type": "string"
|
|
990
|
+
}
|
|
564
991
|
}
|
|
565
992
|
],
|
|
566
993
|
"queryParams": [
|
|
567
994
|
{
|
|
568
995
|
"name": "part",
|
|
569
|
-
"required": false
|
|
996
|
+
"required": false,
|
|
997
|
+
"schema": {
|
|
998
|
+
"type": "string",
|
|
999
|
+
"enum": [
|
|
1000
|
+
"text",
|
|
1001
|
+
"html",
|
|
1002
|
+
"both"
|
|
1003
|
+
]
|
|
1004
|
+
}
|
|
570
1005
|
},
|
|
571
1006
|
{
|
|
572
1007
|
"name": "max_body_chars",
|
|
573
|
-
"required": false
|
|
1008
|
+
"required": false,
|
|
1009
|
+
"schema": {
|
|
1010
|
+
"type": "integer",
|
|
1011
|
+
"minimum": 1,
|
|
1012
|
+
"maximum": 1000000
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"name": "mailbox_id",
|
|
1017
|
+
"required": false,
|
|
1018
|
+
"schema": {
|
|
1019
|
+
"type": "string"
|
|
1020
|
+
}
|
|
574
1021
|
}
|
|
575
1022
|
],
|
|
1023
|
+
"responseKind": "json",
|
|
576
1024
|
"requestBodyRequired": false,
|
|
577
1025
|
"requiredKeyKind": "mailbox",
|
|
578
1026
|
"surface": "mailbox"
|
|
579
1027
|
},
|
|
580
1028
|
mailboxListContent: {
|
|
1029
|
+
"bodyKind": "none",
|
|
581
1030
|
"command": "mailbox:list-content",
|
|
582
1031
|
"description": "Get clean message content",
|
|
583
1032
|
"headerParams": [
|
|
584
1033
|
{
|
|
585
1034
|
"name": "If-None-Match",
|
|
586
|
-
"required": false
|
|
1035
|
+
"required": false,
|
|
1036
|
+
"schema": {
|
|
1037
|
+
"type": "string"
|
|
1038
|
+
}
|
|
587
1039
|
}
|
|
588
1040
|
],
|
|
589
1041
|
"method": "get",
|
|
@@ -592,48 +1044,100 @@ export const operations = {
|
|
|
592
1044
|
"pathParams": [
|
|
593
1045
|
{
|
|
594
1046
|
"name": "message_id",
|
|
595
|
-
"required": true
|
|
1047
|
+
"required": true,
|
|
1048
|
+
"schema": {
|
|
1049
|
+
"type": "string"
|
|
1050
|
+
}
|
|
596
1051
|
}
|
|
597
1052
|
],
|
|
598
1053
|
"queryParams": [
|
|
599
1054
|
{
|
|
600
1055
|
"name": "part",
|
|
601
|
-
"required": false
|
|
1056
|
+
"required": false,
|
|
1057
|
+
"schema": {
|
|
1058
|
+
"type": "string",
|
|
1059
|
+
"enum": [
|
|
1060
|
+
"auto",
|
|
1061
|
+
"text",
|
|
1062
|
+
"html"
|
|
1063
|
+
]
|
|
1064
|
+
}
|
|
602
1065
|
},
|
|
603
1066
|
{
|
|
604
1067
|
"name": "max_body_chars",
|
|
605
|
-
"required": false
|
|
1068
|
+
"required": false,
|
|
1069
|
+
"schema": {
|
|
1070
|
+
"type": "integer",
|
|
1071
|
+
"minimum": 1,
|
|
1072
|
+
"maximum": 1000000
|
|
1073
|
+
}
|
|
606
1074
|
},
|
|
607
1075
|
{
|
|
608
1076
|
"name": "strip_signature",
|
|
609
|
-
"required": false
|
|
1077
|
+
"required": false,
|
|
1078
|
+
"schema": {
|
|
1079
|
+
"type": "boolean"
|
|
1080
|
+
}
|
|
610
1081
|
},
|
|
611
1082
|
{
|
|
612
1083
|
"name": "strip_quotes",
|
|
613
|
-
"required": false
|
|
1084
|
+
"required": false,
|
|
1085
|
+
"schema": {
|
|
1086
|
+
"type": "boolean"
|
|
1087
|
+
}
|
|
614
1088
|
},
|
|
615
1089
|
{
|
|
616
1090
|
"name": "include_links",
|
|
617
|
-
"required": false
|
|
1091
|
+
"required": false,
|
|
1092
|
+
"schema": {
|
|
1093
|
+
"type": "boolean"
|
|
1094
|
+
}
|
|
618
1095
|
},
|
|
619
1096
|
{
|
|
620
1097
|
"name": "include_html",
|
|
621
|
-
"required": false
|
|
1098
|
+
"required": false,
|
|
1099
|
+
"schema": {
|
|
1100
|
+
"type": "boolean"
|
|
1101
|
+
}
|
|
622
1102
|
},
|
|
623
1103
|
{
|
|
624
1104
|
"name": "include_headers",
|
|
625
|
-
"required": false
|
|
1105
|
+
"required": false,
|
|
1106
|
+
"schema": {
|
|
1107
|
+
"type": "string",
|
|
1108
|
+
"enum": [
|
|
1109
|
+
"none",
|
|
1110
|
+
"selected",
|
|
1111
|
+
"full"
|
|
1112
|
+
]
|
|
1113
|
+
}
|
|
626
1114
|
},
|
|
627
1115
|
{
|
|
628
1116
|
"name": "include_attachments",
|
|
629
|
-
"required": false
|
|
1117
|
+
"required": false,
|
|
1118
|
+
"schema": {
|
|
1119
|
+
"type": "string",
|
|
1120
|
+
"enum": [
|
|
1121
|
+
"none",
|
|
1122
|
+
"metadata"
|
|
1123
|
+
]
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "mailbox_id",
|
|
1128
|
+
"required": false,
|
|
1129
|
+
"schema": {
|
|
1130
|
+
"type": "string"
|
|
1131
|
+
}
|
|
630
1132
|
}
|
|
631
1133
|
],
|
|
1134
|
+
"responseKind": "json",
|
|
632
1135
|
"requestBodyRequired": false,
|
|
633
1136
|
"requiredKeyKind": "mailbox",
|
|
634
1137
|
"surface": "mailbox"
|
|
635
1138
|
},
|
|
636
1139
|
mailboxListFolders: {
|
|
1140
|
+
"bodyKind": "none",
|
|
637
1141
|
"command": "mailbox:folders:list",
|
|
638
1142
|
"description": "List mailbox folders",
|
|
639
1143
|
"headerParams": [],
|
|
@@ -644,18 +1148,74 @@ export const operations = {
|
|
|
644
1148
|
"queryParams": [
|
|
645
1149
|
{
|
|
646
1150
|
"name": "cursor",
|
|
647
|
-
"required": false
|
|
1151
|
+
"required": false,
|
|
1152
|
+
"schema": {
|
|
1153
|
+
"type": "string"
|
|
1154
|
+
}
|
|
648
1155
|
},
|
|
649
1156
|
{
|
|
650
1157
|
"name": "limit",
|
|
651
|
-
"required": false
|
|
1158
|
+
"required": false,
|
|
1159
|
+
"schema": {
|
|
1160
|
+
"type": "integer",
|
|
1161
|
+
"minimum": 1,
|
|
1162
|
+
"maximum": 100
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "mailbox_id",
|
|
1167
|
+
"required": false,
|
|
1168
|
+
"schema": {
|
|
1169
|
+
"type": "string"
|
|
1170
|
+
}
|
|
652
1171
|
}
|
|
653
1172
|
],
|
|
1173
|
+
"responseKind": "json",
|
|
1174
|
+
"requestBodyRequired": false,
|
|
1175
|
+
"requiredKeyKind": "mailbox",
|
|
1176
|
+
"surface": "mailbox"
|
|
1177
|
+
},
|
|
1178
|
+
mailboxListGrantedMailboxes: {
|
|
1179
|
+
"bodyKind": "none",
|
|
1180
|
+
"command": "mailbox:list-granted-mailboxes",
|
|
1181
|
+
"description": "List granted mailboxes",
|
|
1182
|
+
"headerParams": [],
|
|
1183
|
+
"method": "get",
|
|
1184
|
+
"operationId": "mailboxListGrantedMailboxes",
|
|
1185
|
+
"path": "/mailbox/mailboxes",
|
|
1186
|
+
"pathParams": [],
|
|
1187
|
+
"queryParams": [
|
|
1188
|
+
{
|
|
1189
|
+
"name": "cursor",
|
|
1190
|
+
"required": false,
|
|
1191
|
+
"schema": {
|
|
1192
|
+
"type": "string"
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"name": "limit",
|
|
1197
|
+
"required": false,
|
|
1198
|
+
"schema": {
|
|
1199
|
+
"type": "integer",
|
|
1200
|
+
"minimum": 1,
|
|
1201
|
+
"maximum": 100
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"name": "q",
|
|
1206
|
+
"required": false,
|
|
1207
|
+
"schema": {
|
|
1208
|
+
"type": "string"
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"responseKind": "json",
|
|
654
1213
|
"requestBodyRequired": false,
|
|
655
1214
|
"requiredKeyKind": "mailbox",
|
|
656
1215
|
"surface": "mailbox"
|
|
657
1216
|
},
|
|
658
1217
|
mailboxListIdentities: {
|
|
1218
|
+
"bodyKind": "none",
|
|
659
1219
|
"command": "mailbox:list-identities",
|
|
660
1220
|
"description": "List mailbox sender identities",
|
|
661
1221
|
"headerParams": [],
|
|
@@ -666,18 +1226,35 @@ export const operations = {
|
|
|
666
1226
|
"queryParams": [
|
|
667
1227
|
{
|
|
668
1228
|
"name": "cursor",
|
|
669
|
-
"required": false
|
|
1229
|
+
"required": false,
|
|
1230
|
+
"schema": {
|
|
1231
|
+
"type": "string"
|
|
1232
|
+
}
|
|
670
1233
|
},
|
|
671
1234
|
{
|
|
672
1235
|
"name": "limit",
|
|
673
|
-
"required": false
|
|
1236
|
+
"required": false,
|
|
1237
|
+
"schema": {
|
|
1238
|
+
"type": "integer",
|
|
1239
|
+
"minimum": 1,
|
|
1240
|
+
"maximum": 100
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"name": "mailbox_id",
|
|
1245
|
+
"required": false,
|
|
1246
|
+
"schema": {
|
|
1247
|
+
"type": "string"
|
|
1248
|
+
}
|
|
674
1249
|
}
|
|
675
1250
|
],
|
|
1251
|
+
"responseKind": "json",
|
|
676
1252
|
"requestBodyRequired": false,
|
|
677
1253
|
"requiredKeyKind": "mailbox",
|
|
678
1254
|
"surface": "mailbox"
|
|
679
1255
|
},
|
|
680
1256
|
mailboxListMessages: {
|
|
1257
|
+
"bodyKind": "none",
|
|
681
1258
|
"command": "mailbox:messages:list",
|
|
682
1259
|
"description": "List mailbox messages",
|
|
683
1260
|
"headerParams": [],
|
|
@@ -688,102 +1265,196 @@ export const operations = {
|
|
|
688
1265
|
"queryParams": [
|
|
689
1266
|
{
|
|
690
1267
|
"name": "cursor",
|
|
691
|
-
"required": false
|
|
1268
|
+
"required": false,
|
|
1269
|
+
"schema": {
|
|
1270
|
+
"type": "string"
|
|
1271
|
+
}
|
|
692
1272
|
},
|
|
693
1273
|
{
|
|
694
1274
|
"name": "limit",
|
|
695
|
-
"required": false
|
|
1275
|
+
"required": false,
|
|
1276
|
+
"schema": {
|
|
1277
|
+
"type": "integer",
|
|
1278
|
+
"minimum": 1,
|
|
1279
|
+
"maximum": 100
|
|
1280
|
+
}
|
|
696
1281
|
},
|
|
697
1282
|
{
|
|
698
1283
|
"name": "folder_id",
|
|
699
|
-
"required": false
|
|
1284
|
+
"required": false,
|
|
1285
|
+
"schema": {
|
|
1286
|
+
"type": "string"
|
|
1287
|
+
}
|
|
700
1288
|
},
|
|
701
1289
|
{
|
|
702
1290
|
"name": "thread_id",
|
|
703
|
-
"required": false
|
|
1291
|
+
"required": false,
|
|
1292
|
+
"schema": {
|
|
1293
|
+
"type": "string"
|
|
1294
|
+
}
|
|
704
1295
|
},
|
|
705
1296
|
{
|
|
706
1297
|
"name": "q",
|
|
707
|
-
"required": false
|
|
1298
|
+
"required": false,
|
|
1299
|
+
"schema": {
|
|
1300
|
+
"type": "string"
|
|
1301
|
+
}
|
|
708
1302
|
},
|
|
709
1303
|
{
|
|
710
1304
|
"name": "from",
|
|
711
|
-
"required": false
|
|
1305
|
+
"required": false,
|
|
1306
|
+
"schema": {
|
|
1307
|
+
"type": "string"
|
|
1308
|
+
}
|
|
712
1309
|
},
|
|
713
1310
|
{
|
|
714
1311
|
"name": "to",
|
|
715
|
-
"required": false
|
|
1312
|
+
"required": false,
|
|
1313
|
+
"schema": {
|
|
1314
|
+
"type": "string"
|
|
1315
|
+
}
|
|
716
1316
|
},
|
|
717
1317
|
{
|
|
718
1318
|
"name": "cc",
|
|
719
|
-
"required": false
|
|
1319
|
+
"required": false,
|
|
1320
|
+
"schema": {
|
|
1321
|
+
"type": "string"
|
|
1322
|
+
}
|
|
720
1323
|
},
|
|
721
1324
|
{
|
|
722
1325
|
"name": "bcc",
|
|
723
|
-
"required": false
|
|
1326
|
+
"required": false,
|
|
1327
|
+
"schema": {
|
|
1328
|
+
"type": "string"
|
|
1329
|
+
}
|
|
724
1330
|
},
|
|
725
1331
|
{
|
|
726
1332
|
"name": "subject",
|
|
727
|
-
"required": false
|
|
1333
|
+
"required": false,
|
|
1334
|
+
"schema": {
|
|
1335
|
+
"type": "string"
|
|
1336
|
+
}
|
|
728
1337
|
},
|
|
729
1338
|
{
|
|
730
1339
|
"name": "body",
|
|
731
|
-
"required": false
|
|
1340
|
+
"required": false,
|
|
1341
|
+
"schema": {
|
|
1342
|
+
"type": "string"
|
|
1343
|
+
}
|
|
732
1344
|
},
|
|
733
1345
|
{
|
|
734
1346
|
"name": "header_name",
|
|
735
|
-
"required": false
|
|
1347
|
+
"required": false,
|
|
1348
|
+
"schema": {
|
|
1349
|
+
"type": "string"
|
|
1350
|
+
}
|
|
736
1351
|
},
|
|
737
1352
|
{
|
|
738
1353
|
"name": "header_value",
|
|
739
|
-
"required": false
|
|
1354
|
+
"required": false,
|
|
1355
|
+
"schema": {
|
|
1356
|
+
"type": "string"
|
|
1357
|
+
}
|
|
740
1358
|
},
|
|
741
1359
|
{
|
|
742
1360
|
"name": "min_size_bytes",
|
|
743
|
-
"required": false
|
|
1361
|
+
"required": false,
|
|
1362
|
+
"schema": {
|
|
1363
|
+
"type": "integer",
|
|
1364
|
+
"minimum": 0
|
|
1365
|
+
}
|
|
744
1366
|
},
|
|
745
1367
|
{
|
|
746
1368
|
"name": "max_size_bytes",
|
|
747
|
-
"required": false
|
|
1369
|
+
"required": false,
|
|
1370
|
+
"schema": {
|
|
1371
|
+
"type": "integer",
|
|
1372
|
+
"minimum": 0
|
|
1373
|
+
}
|
|
748
1374
|
},
|
|
749
1375
|
{
|
|
750
1376
|
"name": "keyword",
|
|
751
|
-
"required": false
|
|
1377
|
+
"required": false,
|
|
1378
|
+
"schema": {
|
|
1379
|
+
"type": "string"
|
|
1380
|
+
}
|
|
752
1381
|
},
|
|
753
1382
|
{
|
|
754
1383
|
"name": "not_keyword",
|
|
755
|
-
"required": false
|
|
1384
|
+
"required": false,
|
|
1385
|
+
"schema": {
|
|
1386
|
+
"type": "string"
|
|
1387
|
+
}
|
|
756
1388
|
},
|
|
757
1389
|
{
|
|
758
1390
|
"name": "after",
|
|
759
|
-
"required": false
|
|
1391
|
+
"required": false,
|
|
1392
|
+
"schema": {
|
|
1393
|
+
"type": "string"
|
|
1394
|
+
}
|
|
760
1395
|
},
|
|
761
1396
|
{
|
|
762
1397
|
"name": "before",
|
|
763
|
-
"required": false
|
|
1398
|
+
"required": false,
|
|
1399
|
+
"schema": {
|
|
1400
|
+
"type": "string"
|
|
1401
|
+
}
|
|
764
1402
|
},
|
|
765
1403
|
{
|
|
766
1404
|
"name": "has_attachment",
|
|
767
|
-
"required": false
|
|
1405
|
+
"required": false,
|
|
1406
|
+
"schema": {
|
|
1407
|
+
"type": "boolean"
|
|
1408
|
+
}
|
|
768
1409
|
},
|
|
769
1410
|
{
|
|
770
1411
|
"name": "is_unread",
|
|
771
|
-
"required": false
|
|
1412
|
+
"required": false,
|
|
1413
|
+
"schema": {
|
|
1414
|
+
"type": "boolean"
|
|
1415
|
+
}
|
|
772
1416
|
},
|
|
773
1417
|
{
|
|
774
1418
|
"name": "sort_by",
|
|
775
|
-
"required": false
|
|
1419
|
+
"required": false,
|
|
1420
|
+
"schema": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"enum": [
|
|
1423
|
+
"received_at",
|
|
1424
|
+
"sent_at",
|
|
1425
|
+
"subject",
|
|
1426
|
+
"from",
|
|
1427
|
+
"to",
|
|
1428
|
+
"size_bytes"
|
|
1429
|
+
]
|
|
1430
|
+
}
|
|
776
1431
|
},
|
|
777
1432
|
{
|
|
778
1433
|
"name": "sort_direction",
|
|
779
|
-
"required": false
|
|
1434
|
+
"required": false,
|
|
1435
|
+
"schema": {
|
|
1436
|
+
"type": "string",
|
|
1437
|
+
"enum": [
|
|
1438
|
+
"asc",
|
|
1439
|
+
"desc"
|
|
1440
|
+
]
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"name": "mailbox_id",
|
|
1445
|
+
"required": false,
|
|
1446
|
+
"schema": {
|
|
1447
|
+
"type": "string"
|
|
1448
|
+
}
|
|
780
1449
|
}
|
|
781
1450
|
],
|
|
1451
|
+
"responseKind": "json",
|
|
782
1452
|
"requestBodyRequired": false,
|
|
783
1453
|
"requiredKeyKind": "mailbox",
|
|
784
1454
|
"surface": "mailbox"
|
|
785
1455
|
},
|
|
786
1456
|
mailboxListQuotas: {
|
|
1457
|
+
"bodyKind": "none",
|
|
787
1458
|
"command": "mailbox:list-quotas",
|
|
788
1459
|
"description": "List mailbox quotas",
|
|
789
1460
|
"headerParams": [],
|
|
@@ -794,42 +1465,94 @@ export const operations = {
|
|
|
794
1465
|
"queryParams": [
|
|
795
1466
|
{
|
|
796
1467
|
"name": "cursor",
|
|
797
|
-
"required": false
|
|
1468
|
+
"required": false,
|
|
1469
|
+
"schema": {
|
|
1470
|
+
"type": "string"
|
|
1471
|
+
}
|
|
798
1472
|
},
|
|
799
1473
|
{
|
|
800
1474
|
"name": "limit",
|
|
801
|
-
"required": false
|
|
1475
|
+
"required": false,
|
|
1476
|
+
"schema": {
|
|
1477
|
+
"type": "integer",
|
|
1478
|
+
"minimum": 1,
|
|
1479
|
+
"maximum": 100
|
|
1480
|
+
}
|
|
802
1481
|
},
|
|
803
1482
|
{
|
|
804
1483
|
"name": "name",
|
|
805
|
-
"required": false
|
|
1484
|
+
"required": false,
|
|
1485
|
+
"schema": {
|
|
1486
|
+
"type": "string"
|
|
1487
|
+
}
|
|
806
1488
|
},
|
|
807
1489
|
{
|
|
808
1490
|
"name": "scope",
|
|
809
|
-
"required": false
|
|
1491
|
+
"required": false,
|
|
1492
|
+
"schema": {
|
|
1493
|
+
"type": "string",
|
|
1494
|
+
"enum": [
|
|
1495
|
+
"account",
|
|
1496
|
+
"domain",
|
|
1497
|
+
"global"
|
|
1498
|
+
]
|
|
1499
|
+
}
|
|
810
1500
|
},
|
|
811
1501
|
{
|
|
812
1502
|
"name": "resource_type",
|
|
813
|
-
"required": false
|
|
1503
|
+
"required": false,
|
|
1504
|
+
"schema": {
|
|
1505
|
+
"type": "string",
|
|
1506
|
+
"enum": [
|
|
1507
|
+
"count",
|
|
1508
|
+
"octets"
|
|
1509
|
+
]
|
|
1510
|
+
}
|
|
814
1511
|
},
|
|
815
1512
|
{
|
|
816
1513
|
"name": "type",
|
|
817
|
-
"required": false
|
|
1514
|
+
"required": false,
|
|
1515
|
+
"schema": {
|
|
1516
|
+
"type": "string"
|
|
1517
|
+
}
|
|
818
1518
|
},
|
|
819
1519
|
{
|
|
820
1520
|
"name": "sort_by",
|
|
821
|
-
"required": false
|
|
1521
|
+
"required": false,
|
|
1522
|
+
"schema": {
|
|
1523
|
+
"type": "string",
|
|
1524
|
+
"enum": [
|
|
1525
|
+
"name",
|
|
1526
|
+
"used"
|
|
1527
|
+
]
|
|
1528
|
+
}
|
|
822
1529
|
},
|
|
823
1530
|
{
|
|
824
1531
|
"name": "sort_direction",
|
|
825
|
-
"required": false
|
|
1532
|
+
"required": false,
|
|
1533
|
+
"schema": {
|
|
1534
|
+
"type": "string",
|
|
1535
|
+
"enum": [
|
|
1536
|
+
"asc",
|
|
1537
|
+
"desc"
|
|
1538
|
+
]
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"name": "mailbox_id",
|
|
1543
|
+
"required": false,
|
|
1544
|
+
"schema": {
|
|
1545
|
+
"type": "string"
|
|
1546
|
+
}
|
|
826
1547
|
}
|
|
827
1548
|
],
|
|
1549
|
+
"responseKind": "json",
|
|
828
1550
|
"requestBodyRequired": false,
|
|
829
1551
|
"requiredKeyKind": "mailbox",
|
|
830
1552
|
"surface": "mailbox"
|
|
831
1553
|
},
|
|
832
1554
|
mailboxListSubmissions: {
|
|
1555
|
+
"bodyKind": "none",
|
|
833
1556
|
"command": "mailbox:list-submissions",
|
|
834
1557
|
"description": "List mailbox submissions",
|
|
835
1558
|
"headerParams": [],
|
|
@@ -840,50 +1563,105 @@ export const operations = {
|
|
|
840
1563
|
"queryParams": [
|
|
841
1564
|
{
|
|
842
1565
|
"name": "cursor",
|
|
843
|
-
"required": false
|
|
1566
|
+
"required": false,
|
|
1567
|
+
"schema": {
|
|
1568
|
+
"type": "string"
|
|
1569
|
+
}
|
|
844
1570
|
},
|
|
845
1571
|
{
|
|
846
1572
|
"name": "limit",
|
|
847
|
-
"required": false
|
|
1573
|
+
"required": false,
|
|
1574
|
+
"schema": {
|
|
1575
|
+
"type": "integer",
|
|
1576
|
+
"minimum": 1,
|
|
1577
|
+
"maximum": 100
|
|
1578
|
+
}
|
|
848
1579
|
},
|
|
849
1580
|
{
|
|
850
1581
|
"name": "identity_ids",
|
|
851
|
-
"required": false
|
|
1582
|
+
"required": false,
|
|
1583
|
+
"schema": {
|
|
1584
|
+
"type": "string"
|
|
1585
|
+
}
|
|
852
1586
|
},
|
|
853
1587
|
{
|
|
854
1588
|
"name": "email_ids",
|
|
855
|
-
"required": false
|
|
1589
|
+
"required": false,
|
|
1590
|
+
"schema": {
|
|
1591
|
+
"type": "string"
|
|
1592
|
+
}
|
|
856
1593
|
},
|
|
857
1594
|
{
|
|
858
1595
|
"name": "thread_ids",
|
|
859
|
-
"required": false
|
|
1596
|
+
"required": false,
|
|
1597
|
+
"schema": {
|
|
1598
|
+
"type": "string"
|
|
1599
|
+
}
|
|
860
1600
|
},
|
|
861
1601
|
{
|
|
862
1602
|
"name": "undo_status",
|
|
863
|
-
"required": false
|
|
1603
|
+
"required": false,
|
|
1604
|
+
"schema": {
|
|
1605
|
+
"type": "string",
|
|
1606
|
+
"enum": [
|
|
1607
|
+
"pending",
|
|
1608
|
+
"final",
|
|
1609
|
+
"canceled"
|
|
1610
|
+
]
|
|
1611
|
+
}
|
|
864
1612
|
},
|
|
865
1613
|
{
|
|
866
1614
|
"name": "after",
|
|
867
|
-
"required": false
|
|
1615
|
+
"required": false,
|
|
1616
|
+
"schema": {
|
|
1617
|
+
"type": "string"
|
|
1618
|
+
}
|
|
868
1619
|
},
|
|
869
1620
|
{
|
|
870
1621
|
"name": "before",
|
|
871
|
-
"required": false
|
|
1622
|
+
"required": false,
|
|
1623
|
+
"schema": {
|
|
1624
|
+
"type": "string"
|
|
1625
|
+
}
|
|
872
1626
|
},
|
|
873
1627
|
{
|
|
874
1628
|
"name": "sort_by",
|
|
875
|
-
"required": false
|
|
1629
|
+
"required": false,
|
|
1630
|
+
"schema": {
|
|
1631
|
+
"type": "string",
|
|
1632
|
+
"enum": [
|
|
1633
|
+
"send_at",
|
|
1634
|
+
"email_id",
|
|
1635
|
+
"thread_id"
|
|
1636
|
+
]
|
|
1637
|
+
}
|
|
876
1638
|
},
|
|
877
1639
|
{
|
|
878
1640
|
"name": "sort_direction",
|
|
879
|
-
"required": false
|
|
1641
|
+
"required": false,
|
|
1642
|
+
"schema": {
|
|
1643
|
+
"type": "string",
|
|
1644
|
+
"enum": [
|
|
1645
|
+
"asc",
|
|
1646
|
+
"desc"
|
|
1647
|
+
]
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "mailbox_id",
|
|
1652
|
+
"required": false,
|
|
1653
|
+
"schema": {
|
|
1654
|
+
"type": "string"
|
|
1655
|
+
}
|
|
880
1656
|
}
|
|
881
1657
|
],
|
|
1658
|
+
"responseKind": "json",
|
|
882
1659
|
"requestBodyRequired": false,
|
|
883
1660
|
"requiredKeyKind": "mailbox",
|
|
884
1661
|
"surface": "mailbox"
|
|
885
1662
|
},
|
|
886
1663
|
mailboxListThreadMessages: {
|
|
1664
|
+
"bodyKind": "none",
|
|
887
1665
|
"command": "mailbox:list-thread-messages",
|
|
888
1666
|
"description": "List thread messages",
|
|
889
1667
|
"headerParams": [],
|
|
@@ -893,28 +1671,55 @@ export const operations = {
|
|
|
893
1671
|
"pathParams": [
|
|
894
1672
|
{
|
|
895
1673
|
"name": "thread_id",
|
|
896
|
-
"required": true
|
|
1674
|
+
"required": true,
|
|
1675
|
+
"schema": {
|
|
1676
|
+
"type": "string"
|
|
1677
|
+
}
|
|
897
1678
|
}
|
|
898
1679
|
],
|
|
899
1680
|
"queryParams": [
|
|
900
1681
|
{
|
|
901
1682
|
"name": "cursor",
|
|
902
|
-
"required": false
|
|
1683
|
+
"required": false,
|
|
1684
|
+
"schema": {
|
|
1685
|
+
"type": "string"
|
|
1686
|
+
}
|
|
903
1687
|
},
|
|
904
1688
|
{
|
|
905
1689
|
"name": "limit",
|
|
906
|
-
"required": false
|
|
1690
|
+
"required": false,
|
|
1691
|
+
"schema": {
|
|
1692
|
+
"type": "integer",
|
|
1693
|
+
"minimum": 1,
|
|
1694
|
+
"maximum": 100
|
|
1695
|
+
}
|
|
907
1696
|
},
|
|
908
1697
|
{
|
|
909
1698
|
"name": "sort",
|
|
910
|
-
"required": false
|
|
1699
|
+
"required": false,
|
|
1700
|
+
"schema": {
|
|
1701
|
+
"type": "string",
|
|
1702
|
+
"enum": [
|
|
1703
|
+
"asc",
|
|
1704
|
+
"desc"
|
|
1705
|
+
]
|
|
1706
|
+
}
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"name": "mailbox_id",
|
|
1710
|
+
"required": false,
|
|
1711
|
+
"schema": {
|
|
1712
|
+
"type": "string"
|
|
1713
|
+
}
|
|
911
1714
|
}
|
|
912
1715
|
],
|
|
1716
|
+
"responseKind": "json",
|
|
913
1717
|
"requestBodyRequired": false,
|
|
914
1718
|
"requiredKeyKind": "mailbox",
|
|
915
1719
|
"surface": "mailbox"
|
|
916
1720
|
},
|
|
917
1721
|
mailboxListThreads: {
|
|
1722
|
+
"bodyKind": "none",
|
|
918
1723
|
"command": "mailbox:list-threads",
|
|
919
1724
|
"description": "List mailbox threads",
|
|
920
1725
|
"headerParams": [],
|
|
@@ -925,68 +1730,126 @@ export const operations = {
|
|
|
925
1730
|
"queryParams": [
|
|
926
1731
|
{
|
|
927
1732
|
"name": "cursor",
|
|
928
|
-
"required": false
|
|
1733
|
+
"required": false,
|
|
1734
|
+
"schema": {
|
|
1735
|
+
"type": "string"
|
|
1736
|
+
}
|
|
929
1737
|
},
|
|
930
1738
|
{
|
|
931
1739
|
"name": "limit",
|
|
932
|
-
"required": false
|
|
1740
|
+
"required": false,
|
|
1741
|
+
"schema": {
|
|
1742
|
+
"type": "integer",
|
|
1743
|
+
"minimum": 1,
|
|
1744
|
+
"maximum": 100
|
|
1745
|
+
}
|
|
933
1746
|
},
|
|
934
1747
|
{
|
|
935
1748
|
"name": "q",
|
|
936
|
-
"required": false
|
|
1749
|
+
"required": false,
|
|
1750
|
+
"schema": {
|
|
1751
|
+
"type": "string"
|
|
1752
|
+
}
|
|
937
1753
|
},
|
|
938
1754
|
{
|
|
939
1755
|
"name": "participant",
|
|
940
|
-
"required": false
|
|
1756
|
+
"required": false,
|
|
1757
|
+
"schema": {
|
|
1758
|
+
"type": "string"
|
|
1759
|
+
}
|
|
941
1760
|
},
|
|
942
1761
|
{
|
|
943
1762
|
"name": "folder_id",
|
|
944
|
-
"required": false
|
|
1763
|
+
"required": false,
|
|
1764
|
+
"schema": {
|
|
1765
|
+
"type": "string"
|
|
1766
|
+
}
|
|
945
1767
|
},
|
|
946
1768
|
{
|
|
947
1769
|
"name": "after",
|
|
948
|
-
"required": false
|
|
1770
|
+
"required": false,
|
|
1771
|
+
"schema": {
|
|
1772
|
+
"type": "string"
|
|
1773
|
+
}
|
|
949
1774
|
},
|
|
950
1775
|
{
|
|
951
1776
|
"name": "before",
|
|
952
|
-
"required": false
|
|
1777
|
+
"required": false,
|
|
1778
|
+
"schema": {
|
|
1779
|
+
"type": "string"
|
|
1780
|
+
}
|
|
953
1781
|
},
|
|
954
1782
|
{
|
|
955
1783
|
"name": "has_attachment",
|
|
956
|
-
"required": false
|
|
1784
|
+
"required": false,
|
|
1785
|
+
"schema": {
|
|
1786
|
+
"type": "boolean"
|
|
1787
|
+
}
|
|
957
1788
|
},
|
|
958
1789
|
{
|
|
959
1790
|
"name": "is_unread",
|
|
960
|
-
"required": false
|
|
1791
|
+
"required": false,
|
|
1792
|
+
"schema": {
|
|
1793
|
+
"type": "boolean"
|
|
1794
|
+
}
|
|
961
1795
|
},
|
|
962
1796
|
{
|
|
963
1797
|
"name": "sort_direction",
|
|
964
|
-
"required": false
|
|
1798
|
+
"required": false,
|
|
1799
|
+
"schema": {
|
|
1800
|
+
"type": "string",
|
|
1801
|
+
"enum": [
|
|
1802
|
+
"asc",
|
|
1803
|
+
"desc"
|
|
1804
|
+
]
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"name": "mailbox_id",
|
|
1809
|
+
"required": false,
|
|
1810
|
+
"schema": {
|
|
1811
|
+
"type": "string"
|
|
1812
|
+
}
|
|
965
1813
|
}
|
|
966
1814
|
],
|
|
1815
|
+
"responseKind": "json",
|
|
967
1816
|
"requestBodyRequired": false,
|
|
968
1817
|
"requiredKeyKind": "mailbox",
|
|
969
1818
|
"surface": "mailbox"
|
|
970
1819
|
},
|
|
971
1820
|
mailboxListUsage: {
|
|
1821
|
+
"bodyKind": "none",
|
|
972
1822
|
"command": "mailbox:list-usage",
|
|
973
1823
|
"description": "Get mailbox usage",
|
|
974
1824
|
"headerParams": [
|
|
975
1825
|
{
|
|
976
1826
|
"name": "If-None-Match",
|
|
977
|
-
"required": false
|
|
1827
|
+
"required": false,
|
|
1828
|
+
"schema": {
|
|
1829
|
+
"type": "string"
|
|
1830
|
+
}
|
|
978
1831
|
}
|
|
979
1832
|
],
|
|
980
1833
|
"method": "get",
|
|
981
1834
|
"operationId": "mailboxListUsage",
|
|
982
1835
|
"path": "/mailbox/usage",
|
|
983
1836
|
"pathParams": [],
|
|
984
|
-
"queryParams": [
|
|
1837
|
+
"queryParams": [
|
|
1838
|
+
{
|
|
1839
|
+
"name": "mailbox_id",
|
|
1840
|
+
"required": false,
|
|
1841
|
+
"schema": {
|
|
1842
|
+
"type": "string"
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
],
|
|
1846
|
+
"responseKind": "json",
|
|
985
1847
|
"requestBodyRequired": false,
|
|
986
1848
|
"requiredKeyKind": "mailbox",
|
|
987
1849
|
"surface": "mailbox"
|
|
988
1850
|
},
|
|
989
1851
|
mailboxQueryFolderChanges: {
|
|
1852
|
+
"bodyKind": "none",
|
|
990
1853
|
"command": "mailbox:query-folder-changes",
|
|
991
1854
|
"description": "Get folder query changes",
|
|
992
1855
|
"headerParams": [],
|
|
@@ -997,18 +1860,35 @@ export const operations = {
|
|
|
997
1860
|
"queryParams": [
|
|
998
1861
|
{
|
|
999
1862
|
"name": "since_query_state",
|
|
1000
|
-
"required": false
|
|
1863
|
+
"required": false,
|
|
1864
|
+
"schema": {
|
|
1865
|
+
"type": "string"
|
|
1866
|
+
}
|
|
1001
1867
|
},
|
|
1002
1868
|
{
|
|
1003
1869
|
"name": "limit",
|
|
1004
|
-
"required": false
|
|
1870
|
+
"required": false,
|
|
1871
|
+
"schema": {
|
|
1872
|
+
"type": "integer",
|
|
1873
|
+
"minimum": 1,
|
|
1874
|
+
"maximum": 500
|
|
1875
|
+
}
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"name": "mailbox_id",
|
|
1879
|
+
"required": false,
|
|
1880
|
+
"schema": {
|
|
1881
|
+
"type": "string"
|
|
1882
|
+
}
|
|
1005
1883
|
}
|
|
1006
1884
|
],
|
|
1885
|
+
"responseKind": "json",
|
|
1007
1886
|
"requestBodyRequired": false,
|
|
1008
1887
|
"requiredKeyKind": "mailbox",
|
|
1009
1888
|
"surface": "mailbox"
|
|
1010
1889
|
},
|
|
1011
1890
|
mailboxQueryMessageChanges: {
|
|
1891
|
+
"bodyKind": "none",
|
|
1012
1892
|
"command": "mailbox:query-message-changes",
|
|
1013
1893
|
"description": "Get message query changes",
|
|
1014
1894
|
"headerParams": [],
|
|
@@ -1019,106 +1899,203 @@ export const operations = {
|
|
|
1019
1899
|
"queryParams": [
|
|
1020
1900
|
{
|
|
1021
1901
|
"name": "since_query_state",
|
|
1022
|
-
"required": false
|
|
1902
|
+
"required": false,
|
|
1903
|
+
"schema": {
|
|
1904
|
+
"type": "string"
|
|
1905
|
+
}
|
|
1023
1906
|
},
|
|
1024
1907
|
{
|
|
1025
1908
|
"name": "limit",
|
|
1026
|
-
"required": false
|
|
1909
|
+
"required": false,
|
|
1910
|
+
"schema": {
|
|
1911
|
+
"type": "integer",
|
|
1912
|
+
"minimum": 1,
|
|
1913
|
+
"maximum": 500
|
|
1914
|
+
}
|
|
1027
1915
|
},
|
|
1028
1916
|
{
|
|
1029
1917
|
"name": "up_to_id",
|
|
1030
|
-
"required": false
|
|
1918
|
+
"required": false,
|
|
1919
|
+
"schema": {
|
|
1920
|
+
"type": "string"
|
|
1921
|
+
}
|
|
1031
1922
|
},
|
|
1032
1923
|
{
|
|
1033
1924
|
"name": "calculate_total",
|
|
1034
|
-
"required": false
|
|
1925
|
+
"required": false,
|
|
1926
|
+
"schema": {
|
|
1927
|
+
"type": "boolean"
|
|
1928
|
+
}
|
|
1035
1929
|
},
|
|
1036
1930
|
{
|
|
1037
1931
|
"name": "folder_id",
|
|
1038
|
-
"required": false
|
|
1932
|
+
"required": false,
|
|
1933
|
+
"schema": {
|
|
1934
|
+
"type": "string"
|
|
1935
|
+
}
|
|
1039
1936
|
},
|
|
1040
1937
|
{
|
|
1041
1938
|
"name": "q",
|
|
1042
|
-
"required": false
|
|
1939
|
+
"required": false,
|
|
1940
|
+
"schema": {
|
|
1941
|
+
"type": "string"
|
|
1942
|
+
}
|
|
1043
1943
|
},
|
|
1044
1944
|
{
|
|
1045
1945
|
"name": "from",
|
|
1046
|
-
"required": false
|
|
1946
|
+
"required": false,
|
|
1947
|
+
"schema": {
|
|
1948
|
+
"type": "string"
|
|
1949
|
+
}
|
|
1047
1950
|
},
|
|
1048
1951
|
{
|
|
1049
1952
|
"name": "to",
|
|
1050
|
-
"required": false
|
|
1953
|
+
"required": false,
|
|
1954
|
+
"schema": {
|
|
1955
|
+
"type": "string"
|
|
1956
|
+
}
|
|
1051
1957
|
},
|
|
1052
1958
|
{
|
|
1053
1959
|
"name": "cc",
|
|
1054
|
-
"required": false
|
|
1960
|
+
"required": false,
|
|
1961
|
+
"schema": {
|
|
1962
|
+
"type": "string"
|
|
1963
|
+
}
|
|
1055
1964
|
},
|
|
1056
1965
|
{
|
|
1057
1966
|
"name": "bcc",
|
|
1058
|
-
"required": false
|
|
1967
|
+
"required": false,
|
|
1968
|
+
"schema": {
|
|
1969
|
+
"type": "string"
|
|
1970
|
+
}
|
|
1059
1971
|
},
|
|
1060
1972
|
{
|
|
1061
1973
|
"name": "subject",
|
|
1062
|
-
"required": false
|
|
1974
|
+
"required": false,
|
|
1975
|
+
"schema": {
|
|
1976
|
+
"type": "string"
|
|
1977
|
+
}
|
|
1063
1978
|
},
|
|
1064
1979
|
{
|
|
1065
1980
|
"name": "body",
|
|
1066
|
-
"required": false
|
|
1981
|
+
"required": false,
|
|
1982
|
+
"schema": {
|
|
1983
|
+
"type": "string"
|
|
1984
|
+
}
|
|
1067
1985
|
},
|
|
1068
1986
|
{
|
|
1069
1987
|
"name": "header_name",
|
|
1070
|
-
"required": false
|
|
1988
|
+
"required": false,
|
|
1989
|
+
"schema": {
|
|
1990
|
+
"type": "string"
|
|
1991
|
+
}
|
|
1071
1992
|
},
|
|
1072
1993
|
{
|
|
1073
1994
|
"name": "header_value",
|
|
1074
|
-
"required": false
|
|
1995
|
+
"required": false,
|
|
1996
|
+
"schema": {
|
|
1997
|
+
"type": "string"
|
|
1998
|
+
}
|
|
1075
1999
|
},
|
|
1076
2000
|
{
|
|
1077
2001
|
"name": "min_size_bytes",
|
|
1078
|
-
"required": false
|
|
2002
|
+
"required": false,
|
|
2003
|
+
"schema": {
|
|
2004
|
+
"type": "integer",
|
|
2005
|
+
"minimum": 0
|
|
2006
|
+
}
|
|
1079
2007
|
},
|
|
1080
2008
|
{
|
|
1081
2009
|
"name": "max_size_bytes",
|
|
1082
|
-
"required": false
|
|
2010
|
+
"required": false,
|
|
2011
|
+
"schema": {
|
|
2012
|
+
"type": "integer",
|
|
2013
|
+
"minimum": 0
|
|
2014
|
+
}
|
|
1083
2015
|
},
|
|
1084
2016
|
{
|
|
1085
2017
|
"name": "keyword",
|
|
1086
|
-
"required": false
|
|
2018
|
+
"required": false,
|
|
2019
|
+
"schema": {
|
|
2020
|
+
"type": "string"
|
|
2021
|
+
}
|
|
1087
2022
|
},
|
|
1088
2023
|
{
|
|
1089
2024
|
"name": "not_keyword",
|
|
1090
|
-
"required": false
|
|
2025
|
+
"required": false,
|
|
2026
|
+
"schema": {
|
|
2027
|
+
"type": "string"
|
|
2028
|
+
}
|
|
1091
2029
|
},
|
|
1092
2030
|
{
|
|
1093
2031
|
"name": "after",
|
|
1094
|
-
"required": false
|
|
2032
|
+
"required": false,
|
|
2033
|
+
"schema": {
|
|
2034
|
+
"type": "string"
|
|
2035
|
+
}
|
|
1095
2036
|
},
|
|
1096
2037
|
{
|
|
1097
2038
|
"name": "before",
|
|
1098
|
-
"required": false
|
|
2039
|
+
"required": false,
|
|
2040
|
+
"schema": {
|
|
2041
|
+
"type": "string"
|
|
2042
|
+
}
|
|
1099
2043
|
},
|
|
1100
2044
|
{
|
|
1101
2045
|
"name": "has_attachment",
|
|
1102
|
-
"required": false
|
|
2046
|
+
"required": false,
|
|
2047
|
+
"schema": {
|
|
2048
|
+
"type": "boolean"
|
|
2049
|
+
}
|
|
1103
2050
|
},
|
|
1104
2051
|
{
|
|
1105
2052
|
"name": "is_unread",
|
|
1106
|
-
"required": false
|
|
2053
|
+
"required": false,
|
|
2054
|
+
"schema": {
|
|
2055
|
+
"type": "boolean"
|
|
2056
|
+
}
|
|
1107
2057
|
},
|
|
1108
2058
|
{
|
|
1109
2059
|
"name": "sort_by",
|
|
1110
|
-
"required": false
|
|
2060
|
+
"required": false,
|
|
2061
|
+
"schema": {
|
|
2062
|
+
"type": "string",
|
|
2063
|
+
"enum": [
|
|
2064
|
+
"received_at",
|
|
2065
|
+
"sent_at",
|
|
2066
|
+
"subject",
|
|
2067
|
+
"from",
|
|
2068
|
+
"to",
|
|
2069
|
+
"size_bytes"
|
|
2070
|
+
]
|
|
2071
|
+
}
|
|
1111
2072
|
},
|
|
1112
2073
|
{
|
|
1113
2074
|
"name": "sort_direction",
|
|
1114
|
-
"required": false
|
|
2075
|
+
"required": false,
|
|
2076
|
+
"schema": {
|
|
2077
|
+
"type": "string",
|
|
2078
|
+
"enum": [
|
|
2079
|
+
"asc",
|
|
2080
|
+
"desc"
|
|
2081
|
+
]
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"name": "mailbox_id",
|
|
2086
|
+
"required": false,
|
|
2087
|
+
"schema": {
|
|
2088
|
+
"type": "string"
|
|
2089
|
+
}
|
|
1115
2090
|
}
|
|
1116
2091
|
],
|
|
2092
|
+
"responseKind": "json",
|
|
1117
2093
|
"requestBodyRequired": false,
|
|
1118
2094
|
"requiredKeyKind": "mailbox",
|
|
1119
2095
|
"surface": "mailbox"
|
|
1120
2096
|
},
|
|
1121
2097
|
mailboxSearchMessageSnippets: {
|
|
2098
|
+
"bodyKind": "none",
|
|
1122
2099
|
"command": "mailbox:search-message-snippets",
|
|
1123
2100
|
"description": "Get message search snippets",
|
|
1124
2101
|
"headerParams": [],
|
|
@@ -1129,114 +2106,204 @@ export const operations = {
|
|
|
1129
2106
|
"queryParams": [
|
|
1130
2107
|
{
|
|
1131
2108
|
"name": "folder_id",
|
|
1132
|
-
"required": false
|
|
2109
|
+
"required": false,
|
|
2110
|
+
"schema": {
|
|
2111
|
+
"type": "string"
|
|
2112
|
+
}
|
|
1133
2113
|
},
|
|
1134
2114
|
{
|
|
1135
2115
|
"name": "from",
|
|
1136
|
-
"required": false
|
|
2116
|
+
"required": false,
|
|
2117
|
+
"schema": {
|
|
2118
|
+
"type": "string"
|
|
2119
|
+
}
|
|
1137
2120
|
},
|
|
1138
2121
|
{
|
|
1139
2122
|
"name": "to",
|
|
1140
|
-
"required": false
|
|
2123
|
+
"required": false,
|
|
2124
|
+
"schema": {
|
|
2125
|
+
"type": "string"
|
|
2126
|
+
}
|
|
1141
2127
|
},
|
|
1142
2128
|
{
|
|
1143
2129
|
"name": "cc",
|
|
1144
|
-
"required": false
|
|
2130
|
+
"required": false,
|
|
2131
|
+
"schema": {
|
|
2132
|
+
"type": "string"
|
|
2133
|
+
}
|
|
1145
2134
|
},
|
|
1146
2135
|
{
|
|
1147
2136
|
"name": "bcc",
|
|
1148
|
-
"required": false
|
|
2137
|
+
"required": false,
|
|
2138
|
+
"schema": {
|
|
2139
|
+
"type": "string"
|
|
2140
|
+
}
|
|
1149
2141
|
},
|
|
1150
2142
|
{
|
|
1151
2143
|
"name": "subject",
|
|
1152
|
-
"required": false
|
|
2144
|
+
"required": false,
|
|
2145
|
+
"schema": {
|
|
2146
|
+
"type": "string"
|
|
2147
|
+
}
|
|
1153
2148
|
},
|
|
1154
2149
|
{
|
|
1155
2150
|
"name": "body",
|
|
1156
|
-
"required": false
|
|
2151
|
+
"required": false,
|
|
2152
|
+
"schema": {
|
|
2153
|
+
"type": "string"
|
|
2154
|
+
}
|
|
1157
2155
|
},
|
|
1158
2156
|
{
|
|
1159
2157
|
"name": "header_name",
|
|
1160
|
-
"required": false
|
|
2158
|
+
"required": false,
|
|
2159
|
+
"schema": {
|
|
2160
|
+
"type": "string"
|
|
2161
|
+
}
|
|
1161
2162
|
},
|
|
1162
2163
|
{
|
|
1163
2164
|
"name": "header_value",
|
|
1164
|
-
"required": false
|
|
2165
|
+
"required": false,
|
|
2166
|
+
"schema": {
|
|
2167
|
+
"type": "string"
|
|
2168
|
+
}
|
|
1165
2169
|
},
|
|
1166
2170
|
{
|
|
1167
2171
|
"name": "min_size_bytes",
|
|
1168
|
-
"required": false
|
|
2172
|
+
"required": false,
|
|
2173
|
+
"schema": {
|
|
2174
|
+
"type": "integer",
|
|
2175
|
+
"minimum": 0
|
|
2176
|
+
}
|
|
1169
2177
|
},
|
|
1170
2178
|
{
|
|
1171
2179
|
"name": "max_size_bytes",
|
|
1172
|
-
"required": false
|
|
2180
|
+
"required": false,
|
|
2181
|
+
"schema": {
|
|
2182
|
+
"type": "integer",
|
|
2183
|
+
"minimum": 0
|
|
2184
|
+
}
|
|
1173
2185
|
},
|
|
1174
2186
|
{
|
|
1175
2187
|
"name": "keyword",
|
|
1176
|
-
"required": false
|
|
2188
|
+
"required": false,
|
|
2189
|
+
"schema": {
|
|
2190
|
+
"type": "string"
|
|
2191
|
+
}
|
|
1177
2192
|
},
|
|
1178
2193
|
{
|
|
1179
2194
|
"name": "not_keyword",
|
|
1180
|
-
"required": false
|
|
2195
|
+
"required": false,
|
|
2196
|
+
"schema": {
|
|
2197
|
+
"type": "string"
|
|
2198
|
+
}
|
|
1181
2199
|
},
|
|
1182
2200
|
{
|
|
1183
2201
|
"name": "after",
|
|
1184
|
-
"required": false
|
|
2202
|
+
"required": false,
|
|
2203
|
+
"schema": {
|
|
2204
|
+
"type": "string"
|
|
2205
|
+
}
|
|
1185
2206
|
},
|
|
1186
2207
|
{
|
|
1187
2208
|
"name": "before",
|
|
1188
|
-
"required": false
|
|
2209
|
+
"required": false,
|
|
2210
|
+
"schema": {
|
|
2211
|
+
"type": "string"
|
|
2212
|
+
}
|
|
1189
2213
|
},
|
|
1190
2214
|
{
|
|
1191
2215
|
"name": "has_attachment",
|
|
1192
|
-
"required": false
|
|
2216
|
+
"required": false,
|
|
2217
|
+
"schema": {
|
|
2218
|
+
"type": "boolean"
|
|
2219
|
+
}
|
|
1193
2220
|
},
|
|
1194
2221
|
{
|
|
1195
2222
|
"name": "is_unread",
|
|
1196
|
-
"required": false
|
|
2223
|
+
"required": false,
|
|
2224
|
+
"schema": {
|
|
2225
|
+
"type": "boolean"
|
|
2226
|
+
}
|
|
1197
2227
|
},
|
|
1198
2228
|
{
|
|
1199
2229
|
"name": "q",
|
|
1200
|
-
"required": true
|
|
2230
|
+
"required": true,
|
|
2231
|
+
"schema": {
|
|
2232
|
+
"type": "string"
|
|
2233
|
+
}
|
|
1201
2234
|
},
|
|
1202
2235
|
{
|
|
1203
2236
|
"name": "message_ids",
|
|
1204
|
-
"required": false
|
|
2237
|
+
"required": false,
|
|
2238
|
+
"schema": {
|
|
2239
|
+
"type": "string"
|
|
2240
|
+
}
|
|
1205
2241
|
},
|
|
1206
2242
|
{
|
|
1207
2243
|
"name": "limit",
|
|
1208
|
-
"required": false
|
|
2244
|
+
"required": false,
|
|
2245
|
+
"schema": {
|
|
2246
|
+
"type": "integer",
|
|
2247
|
+
"minimum": 1,
|
|
2248
|
+
"maximum": 100
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"name": "mailbox_id",
|
|
2253
|
+
"required": false,
|
|
2254
|
+
"schema": {
|
|
2255
|
+
"type": "string"
|
|
2256
|
+
}
|
|
1209
2257
|
}
|
|
1210
2258
|
],
|
|
2259
|
+
"responseKind": "json",
|
|
1211
2260
|
"requestBodyRequired": false,
|
|
1212
2261
|
"requiredKeyKind": "mailbox",
|
|
1213
2262
|
"surface": "mailbox"
|
|
1214
2263
|
},
|
|
1215
2264
|
mailboxSendMessage: {
|
|
2265
|
+
"bodyKind": "json",
|
|
1216
2266
|
"command": "mailbox:send-message",
|
|
1217
2267
|
"description": "Send a mailbox message",
|
|
1218
2268
|
"headerParams": [
|
|
1219
2269
|
{
|
|
1220
2270
|
"name": "Idempotency-Key",
|
|
1221
|
-
"required": false
|
|
2271
|
+
"required": false,
|
|
2272
|
+
"schema": {
|
|
2273
|
+
"type": "string",
|
|
2274
|
+
"maxLength": 255
|
|
2275
|
+
}
|
|
1222
2276
|
}
|
|
1223
2277
|
],
|
|
1224
2278
|
"method": "post",
|
|
1225
2279
|
"operationId": "mailboxSendMessage",
|
|
1226
2280
|
"path": "/mailbox/messages/send",
|
|
1227
2281
|
"pathParams": [],
|
|
1228
|
-
"queryParams": [
|
|
2282
|
+
"queryParams": [
|
|
2283
|
+
{
|
|
2284
|
+
"name": "mailbox_id",
|
|
2285
|
+
"required": false,
|
|
2286
|
+
"schema": {
|
|
2287
|
+
"type": "string"
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
],
|
|
2291
|
+
"responseKind": "json",
|
|
1229
2292
|
"requestBodyRequired": false,
|
|
1230
2293
|
"requiredKeyKind": "mailbox",
|
|
1231
2294
|
"surface": "mailbox"
|
|
1232
2295
|
},
|
|
1233
2296
|
mailboxStreamEvents: {
|
|
2297
|
+
"bodyKind": "none",
|
|
1234
2298
|
"command": "mailbox:stream-events",
|
|
1235
2299
|
"description": "Stream mailbox events",
|
|
1236
2300
|
"headerParams": [
|
|
1237
2301
|
{
|
|
1238
2302
|
"name": "Last-Event-ID",
|
|
1239
|
-
"required": false
|
|
2303
|
+
"required": false,
|
|
2304
|
+
"schema": {
|
|
2305
|
+
"type": "string"
|
|
2306
|
+
}
|
|
1240
2307
|
}
|
|
1241
2308
|
],
|
|
1242
2309
|
"method": "get",
|
|
@@ -1246,32 +2313,60 @@ export const operations = {
|
|
|
1246
2313
|
"queryParams": [
|
|
1247
2314
|
{
|
|
1248
2315
|
"name": "event_types",
|
|
1249
|
-
"required": false
|
|
2316
|
+
"required": false,
|
|
2317
|
+
"schema": {
|
|
2318
|
+
"type": "string"
|
|
2319
|
+
}
|
|
1250
2320
|
},
|
|
1251
2321
|
{
|
|
1252
2322
|
"name": "last_event_id",
|
|
1253
|
-
"required": false
|
|
2323
|
+
"required": false,
|
|
2324
|
+
"schema": {
|
|
2325
|
+
"type": "string"
|
|
2326
|
+
}
|
|
1254
2327
|
},
|
|
1255
2328
|
{
|
|
1256
2329
|
"name": "ping",
|
|
1257
|
-
"required": false
|
|
2330
|
+
"required": false,
|
|
2331
|
+
"schema": {
|
|
2332
|
+
"type": "integer",
|
|
2333
|
+
"minimum": 10,
|
|
2334
|
+
"maximum": 300
|
|
2335
|
+
}
|
|
1258
2336
|
},
|
|
1259
2337
|
{
|
|
1260
2338
|
"name": "close_after",
|
|
1261
|
-
"required": false
|
|
2339
|
+
"required": false,
|
|
2340
|
+
"schema": {
|
|
2341
|
+
"type": "integer",
|
|
2342
|
+
"minimum": 30,
|
|
2343
|
+
"maximum": 3600
|
|
2344
|
+
}
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
"name": "mailbox_id",
|
|
2348
|
+
"required": false,
|
|
2349
|
+
"schema": {
|
|
2350
|
+
"type": "string"
|
|
2351
|
+
}
|
|
1262
2352
|
}
|
|
1263
2353
|
],
|
|
2354
|
+
"responseKind": "json",
|
|
1264
2355
|
"requestBodyRequired": false,
|
|
1265
2356
|
"requiredKeyKind": "mailbox",
|
|
1266
2357
|
"surface": "mailbox"
|
|
1267
2358
|
},
|
|
1268
2359
|
mailboxUpdateFolder: {
|
|
2360
|
+
"bodyKind": "json",
|
|
1269
2361
|
"command": "mailbox:update-folder",
|
|
1270
2362
|
"description": "Update a mailbox folder",
|
|
1271
2363
|
"headerParams": [
|
|
1272
2364
|
{
|
|
1273
2365
|
"name": "If-Match",
|
|
1274
|
-
"required": false
|
|
2366
|
+
"required": false,
|
|
2367
|
+
"schema": {
|
|
2368
|
+
"type": "string"
|
|
2369
|
+
}
|
|
1275
2370
|
}
|
|
1276
2371
|
],
|
|
1277
2372
|
"method": "patch",
|
|
@@ -1280,15 +2375,28 @@ export const operations = {
|
|
|
1280
2375
|
"pathParams": [
|
|
1281
2376
|
{
|
|
1282
2377
|
"name": "folder_id",
|
|
1283
|
-
"required": true
|
|
2378
|
+
"required": true,
|
|
2379
|
+
"schema": {
|
|
2380
|
+
"type": "string"
|
|
2381
|
+
}
|
|
1284
2382
|
}
|
|
1285
2383
|
],
|
|
1286
|
-
"queryParams": [
|
|
2384
|
+
"queryParams": [
|
|
2385
|
+
{
|
|
2386
|
+
"name": "mailbox_id",
|
|
2387
|
+
"required": false,
|
|
2388
|
+
"schema": {
|
|
2389
|
+
"type": "string"
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
],
|
|
2393
|
+
"responseKind": "json",
|
|
1287
2394
|
"requestBodyRequired": false,
|
|
1288
2395
|
"requiredKeyKind": "mailbox",
|
|
1289
2396
|
"surface": "mailbox"
|
|
1290
2397
|
},
|
|
1291
2398
|
mailboxUpdateIdentity: {
|
|
2399
|
+
"bodyKind": "json",
|
|
1292
2400
|
"command": "mailbox:update-identity",
|
|
1293
2401
|
"description": "Update mailbox sender identity",
|
|
1294
2402
|
"headerParams": [],
|
|
@@ -1296,18 +2404,31 @@ export const operations = {
|
|
|
1296
2404
|
"operationId": "mailboxUpdateIdentity",
|
|
1297
2405
|
"path": "/mailbox/identity",
|
|
1298
2406
|
"pathParams": [],
|
|
1299
|
-
"queryParams": [
|
|
2407
|
+
"queryParams": [
|
|
2408
|
+
{
|
|
2409
|
+
"name": "mailbox_id",
|
|
2410
|
+
"required": false,
|
|
2411
|
+
"schema": {
|
|
2412
|
+
"type": "string"
|
|
2413
|
+
}
|
|
2414
|
+
}
|
|
2415
|
+
],
|
|
2416
|
+
"responseKind": "json",
|
|
1300
2417
|
"requestBodyRequired": false,
|
|
1301
2418
|
"requiredKeyKind": "mailbox",
|
|
1302
2419
|
"surface": "mailbox"
|
|
1303
2420
|
},
|
|
1304
2421
|
mailboxUpdateMessage: {
|
|
2422
|
+
"bodyKind": "json",
|
|
1305
2423
|
"command": "mailbox:update-message",
|
|
1306
2424
|
"description": "Update mailbox message flags",
|
|
1307
2425
|
"headerParams": [
|
|
1308
2426
|
{
|
|
1309
2427
|
"name": "If-Match",
|
|
1310
|
-
"required": false
|
|
2428
|
+
"required": false,
|
|
2429
|
+
"schema": {
|
|
2430
|
+
"type": "string"
|
|
2431
|
+
}
|
|
1311
2432
|
}
|
|
1312
2433
|
],
|
|
1313
2434
|
"method": "patch",
|
|
@@ -1316,15 +2437,28 @@ export const operations = {
|
|
|
1316
2437
|
"pathParams": [
|
|
1317
2438
|
{
|
|
1318
2439
|
"name": "message_id",
|
|
1319
|
-
"required": true
|
|
2440
|
+
"required": true,
|
|
2441
|
+
"schema": {
|
|
2442
|
+
"type": "string"
|
|
2443
|
+
}
|
|
1320
2444
|
}
|
|
1321
2445
|
],
|
|
1322
|
-
"queryParams": [
|
|
2446
|
+
"queryParams": [
|
|
2447
|
+
{
|
|
2448
|
+
"name": "mailbox_id",
|
|
2449
|
+
"required": false,
|
|
2450
|
+
"schema": {
|
|
2451
|
+
"type": "string"
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
"responseKind": "json",
|
|
1323
2456
|
"requestBodyRequired": false,
|
|
1324
2457
|
"requiredKeyKind": "mailbox",
|
|
1325
2458
|
"surface": "mailbox"
|
|
1326
2459
|
},
|
|
1327
2460
|
mailboxUploadAttachment: {
|
|
2461
|
+
"bodyKind": "binary",
|
|
1328
2462
|
"command": "mailbox:upload-attachment",
|
|
1329
2463
|
"description": "Upload a mailbox attachment",
|
|
1330
2464
|
"headerParams": [],
|
|
@@ -1335,20 +2469,36 @@ export const operations = {
|
|
|
1335
2469
|
"queryParams": [
|
|
1336
2470
|
{
|
|
1337
2471
|
"name": "filename",
|
|
1338
|
-
"required": true
|
|
2472
|
+
"required": true,
|
|
2473
|
+
"schema": {
|
|
2474
|
+
"type": "string"
|
|
2475
|
+
}
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"name": "mailbox_id",
|
|
2479
|
+
"required": false,
|
|
2480
|
+
"schema": {
|
|
2481
|
+
"type": "string"
|
|
2482
|
+
}
|
|
1339
2483
|
}
|
|
1340
2484
|
],
|
|
2485
|
+
"responseKind": "json",
|
|
1341
2486
|
"requestBodyRequired": false,
|
|
1342
2487
|
"requiredKeyKind": "mailbox",
|
|
1343
2488
|
"surface": "mailbox"
|
|
1344
2489
|
},
|
|
1345
2490
|
managementActivateProvider: {
|
|
2491
|
+
"bodyKind": "none",
|
|
1346
2492
|
"command": "management:activate-provider",
|
|
1347
2493
|
"description": "Activate a sending account",
|
|
1348
2494
|
"headerParams": [
|
|
1349
2495
|
{
|
|
1350
2496
|
"name": "Idempotency-Key",
|
|
1351
|
-
"required": false
|
|
2497
|
+
"required": false,
|
|
2498
|
+
"schema": {
|
|
2499
|
+
"type": "string",
|
|
2500
|
+
"maxLength": 255
|
|
2501
|
+
}
|
|
1352
2502
|
}
|
|
1353
2503
|
],
|
|
1354
2504
|
"method": "post",
|
|
@@ -1357,21 +2507,53 @@ export const operations = {
|
|
|
1357
2507
|
"pathParams": [
|
|
1358
2508
|
{
|
|
1359
2509
|
"name": "public_id",
|
|
1360
|
-
"required": true
|
|
2510
|
+
"required": true,
|
|
2511
|
+
"schema": {
|
|
2512
|
+
"type": "string"
|
|
2513
|
+
}
|
|
1361
2514
|
}
|
|
1362
2515
|
],
|
|
1363
2516
|
"queryParams": [],
|
|
2517
|
+
"responseKind": "json",
|
|
2518
|
+
"requestBodyRequired": false,
|
|
2519
|
+
"requiredKeyKind": "root",
|
|
2520
|
+
"surface": "management"
|
|
2521
|
+
},
|
|
2522
|
+
managementCancelSharedAmazonSesLimitRequest: {
|
|
2523
|
+
"bodyKind": "none",
|
|
2524
|
+
"command": "management:cancel-shared-amazon-ses-limit-request",
|
|
2525
|
+
"description": "Cancel a shared Amazon SES daily limit request",
|
|
2526
|
+
"headerParams": [],
|
|
2527
|
+
"method": "delete",
|
|
2528
|
+
"operationId": "managementCancelSharedAmazonSesLimitRequest",
|
|
2529
|
+
"path": "/providers/shared-amazon-ses-limit-request/{request_id}",
|
|
2530
|
+
"pathParams": [
|
|
2531
|
+
{
|
|
2532
|
+
"name": "request_id",
|
|
2533
|
+
"required": true,
|
|
2534
|
+
"schema": {
|
|
2535
|
+
"type": "string"
|
|
2536
|
+
}
|
|
2537
|
+
}
|
|
2538
|
+
],
|
|
2539
|
+
"queryParams": [],
|
|
2540
|
+
"responseKind": "json",
|
|
1364
2541
|
"requestBodyRequired": false,
|
|
1365
2542
|
"requiredKeyKind": "root",
|
|
1366
2543
|
"surface": "management"
|
|
1367
2544
|
},
|
|
1368
2545
|
managementCreateDomain: {
|
|
2546
|
+
"bodyKind": "json",
|
|
1369
2547
|
"command": "management:create-domain",
|
|
1370
2548
|
"description": "Add a mailbox domain",
|
|
1371
2549
|
"headerParams": [
|
|
1372
2550
|
{
|
|
1373
2551
|
"name": "Idempotency-Key",
|
|
1374
|
-
"required": false
|
|
2552
|
+
"required": false,
|
|
2553
|
+
"schema": {
|
|
2554
|
+
"type": "string",
|
|
2555
|
+
"maxLength": 255
|
|
2556
|
+
}
|
|
1375
2557
|
}
|
|
1376
2558
|
],
|
|
1377
2559
|
"method": "post",
|
|
@@ -1379,17 +2561,23 @@ export const operations = {
|
|
|
1379
2561
|
"path": "/domains",
|
|
1380
2562
|
"pathParams": [],
|
|
1381
2563
|
"queryParams": [],
|
|
2564
|
+
"responseKind": "json",
|
|
1382
2565
|
"requestBodyRequired": false,
|
|
1383
2566
|
"requiredKeyKind": "root",
|
|
1384
2567
|
"surface": "management"
|
|
1385
2568
|
},
|
|
1386
2569
|
managementCreateMailbox: {
|
|
2570
|
+
"bodyKind": "json",
|
|
1387
2571
|
"command": "management:create-mailbox",
|
|
1388
2572
|
"description": "Create a mailbox",
|
|
1389
2573
|
"headerParams": [
|
|
1390
2574
|
{
|
|
1391
2575
|
"name": "Idempotency-Key",
|
|
1392
|
-
"required": false
|
|
2576
|
+
"required": false,
|
|
2577
|
+
"schema": {
|
|
2578
|
+
"type": "string",
|
|
2579
|
+
"maxLength": 255
|
|
2580
|
+
}
|
|
1393
2581
|
}
|
|
1394
2582
|
],
|
|
1395
2583
|
"method": "post",
|
|
@@ -1397,17 +2585,23 @@ export const operations = {
|
|
|
1397
2585
|
"path": "/mailboxes",
|
|
1398
2586
|
"pathParams": [],
|
|
1399
2587
|
"queryParams": [],
|
|
2588
|
+
"responseKind": "json",
|
|
1400
2589
|
"requestBodyRequired": false,
|
|
1401
2590
|
"requiredKeyKind": "root",
|
|
1402
2591
|
"surface": "management"
|
|
1403
2592
|
},
|
|
1404
2593
|
managementCreateMailboxKey: {
|
|
2594
|
+
"bodyKind": "json",
|
|
1405
2595
|
"command": "management:create-mailbox-key",
|
|
1406
2596
|
"description": "Create a mailbox API key",
|
|
1407
2597
|
"headerParams": [
|
|
1408
2598
|
{
|
|
1409
2599
|
"name": "Idempotency-Key",
|
|
1410
|
-
"required": false
|
|
2600
|
+
"required": false,
|
|
2601
|
+
"schema": {
|
|
2602
|
+
"type": "string",
|
|
2603
|
+
"maxLength": 255
|
|
2604
|
+
}
|
|
1411
2605
|
}
|
|
1412
2606
|
],
|
|
1413
2607
|
"method": "post",
|
|
@@ -1416,21 +2610,30 @@ export const operations = {
|
|
|
1416
2610
|
"pathParams": [
|
|
1417
2611
|
{
|
|
1418
2612
|
"name": "public_id",
|
|
1419
|
-
"required": true
|
|
2613
|
+
"required": true,
|
|
2614
|
+
"schema": {
|
|
2615
|
+
"type": "string"
|
|
2616
|
+
}
|
|
1420
2617
|
}
|
|
1421
2618
|
],
|
|
1422
2619
|
"queryParams": [],
|
|
2620
|
+
"responseKind": "json",
|
|
1423
2621
|
"requestBodyRequired": false,
|
|
1424
2622
|
"requiredKeyKind": "root",
|
|
1425
2623
|
"surface": "management"
|
|
1426
2624
|
},
|
|
1427
2625
|
managementCreateProvider: {
|
|
2626
|
+
"bodyKind": "json",
|
|
1428
2627
|
"command": "management:create-provider",
|
|
1429
2628
|
"description": "Create an SMTP sending account",
|
|
1430
2629
|
"headerParams": [
|
|
1431
2630
|
{
|
|
1432
2631
|
"name": "Idempotency-Key",
|
|
1433
|
-
"required": false
|
|
2632
|
+
"required": false,
|
|
2633
|
+
"schema": {
|
|
2634
|
+
"type": "string",
|
|
2635
|
+
"maxLength": 255
|
|
2636
|
+
}
|
|
1434
2637
|
}
|
|
1435
2638
|
],
|
|
1436
2639
|
"method": "post",
|
|
@@ -1438,17 +2641,23 @@ export const operations = {
|
|
|
1438
2641
|
"path": "/providers",
|
|
1439
2642
|
"pathParams": [],
|
|
1440
2643
|
"queryParams": [],
|
|
2644
|
+
"responseKind": "json",
|
|
1441
2645
|
"requestBodyRequired": false,
|
|
1442
2646
|
"requiredKeyKind": "root",
|
|
1443
2647
|
"surface": "management"
|
|
1444
2648
|
},
|
|
1445
2649
|
managementCreateSharedAmazonSesLimitRequest: {
|
|
2650
|
+
"bodyKind": "none",
|
|
1446
2651
|
"command": "management:create-shared-amazon-ses-limit-request",
|
|
1447
2652
|
"description": "Request a shared Amazon SES daily limit increase",
|
|
1448
2653
|
"headerParams": [
|
|
1449
2654
|
{
|
|
1450
2655
|
"name": "Idempotency-Key",
|
|
1451
|
-
"required": false
|
|
2656
|
+
"required": false,
|
|
2657
|
+
"schema": {
|
|
2658
|
+
"type": "string",
|
|
2659
|
+
"maxLength": 255
|
|
2660
|
+
}
|
|
1452
2661
|
}
|
|
1453
2662
|
],
|
|
1454
2663
|
"method": "post",
|
|
@@ -1456,17 +2665,23 @@ export const operations = {
|
|
|
1456
2665
|
"path": "/providers/shared-amazon-ses-limit-request",
|
|
1457
2666
|
"pathParams": [],
|
|
1458
2667
|
"queryParams": [],
|
|
2668
|
+
"responseKind": "json",
|
|
1459
2669
|
"requestBodyRequired": false,
|
|
1460
2670
|
"requiredKeyKind": "root",
|
|
1461
2671
|
"surface": "management"
|
|
1462
2672
|
},
|
|
1463
2673
|
managementCreateWebhook: {
|
|
2674
|
+
"bodyKind": "json",
|
|
1464
2675
|
"command": "management:create-webhook",
|
|
1465
2676
|
"description": "Create a webhook subscription",
|
|
1466
2677
|
"headerParams": [
|
|
1467
2678
|
{
|
|
1468
2679
|
"name": "Idempotency-Key",
|
|
1469
|
-
"required": false
|
|
2680
|
+
"required": false,
|
|
2681
|
+
"schema": {
|
|
2682
|
+
"type": "string",
|
|
2683
|
+
"maxLength": 255
|
|
2684
|
+
}
|
|
1470
2685
|
}
|
|
1471
2686
|
],
|
|
1472
2687
|
"method": "post",
|
|
@@ -1474,17 +2689,23 @@ export const operations = {
|
|
|
1474
2689
|
"path": "/webhooks",
|
|
1475
2690
|
"pathParams": [],
|
|
1476
2691
|
"queryParams": [],
|
|
2692
|
+
"responseKind": "json",
|
|
1477
2693
|
"requestBodyRequired": false,
|
|
1478
2694
|
"requiredKeyKind": "root",
|
|
1479
2695
|
"surface": "management"
|
|
1480
2696
|
},
|
|
1481
2697
|
managementDeactivateProvider: {
|
|
2698
|
+
"bodyKind": "none",
|
|
1482
2699
|
"command": "management:deactivate-provider",
|
|
1483
2700
|
"description": "Deactivate a sending account",
|
|
1484
2701
|
"headerParams": [
|
|
1485
2702
|
{
|
|
1486
2703
|
"name": "Idempotency-Key",
|
|
1487
|
-
"required": false
|
|
2704
|
+
"required": false,
|
|
2705
|
+
"schema": {
|
|
2706
|
+
"type": "string",
|
|
2707
|
+
"maxLength": 255
|
|
2708
|
+
}
|
|
1488
2709
|
}
|
|
1489
2710
|
],
|
|
1490
2711
|
"method": "post",
|
|
@@ -1493,15 +2714,20 @@ export const operations = {
|
|
|
1493
2714
|
"pathParams": [
|
|
1494
2715
|
{
|
|
1495
2716
|
"name": "public_id",
|
|
1496
|
-
"required": true
|
|
2717
|
+
"required": true,
|
|
2718
|
+
"schema": {
|
|
2719
|
+
"type": "string"
|
|
2720
|
+
}
|
|
1497
2721
|
}
|
|
1498
2722
|
],
|
|
1499
2723
|
"queryParams": [],
|
|
2724
|
+
"responseKind": "json",
|
|
1500
2725
|
"requestBodyRequired": false,
|
|
1501
2726
|
"requiredKeyKind": "root",
|
|
1502
2727
|
"surface": "management"
|
|
1503
2728
|
},
|
|
1504
2729
|
managementDeleteDomain: {
|
|
2730
|
+
"bodyKind": "none",
|
|
1505
2731
|
"command": "management:delete-domain",
|
|
1506
2732
|
"description": "Delete a mailbox domain",
|
|
1507
2733
|
"headerParams": [],
|
|
@@ -1511,15 +2737,20 @@ export const operations = {
|
|
|
1511
2737
|
"pathParams": [
|
|
1512
2738
|
{
|
|
1513
2739
|
"name": "public_id",
|
|
1514
|
-
"required": true
|
|
2740
|
+
"required": true,
|
|
2741
|
+
"schema": {
|
|
2742
|
+
"type": "string"
|
|
2743
|
+
}
|
|
1515
2744
|
}
|
|
1516
2745
|
],
|
|
1517
2746
|
"queryParams": [],
|
|
2747
|
+
"responseKind": "json",
|
|
1518
2748
|
"requestBodyRequired": false,
|
|
1519
2749
|
"requiredKeyKind": "root",
|
|
1520
2750
|
"surface": "management"
|
|
1521
2751
|
},
|
|
1522
2752
|
managementDeleteMailbox: {
|
|
2753
|
+
"bodyKind": "none",
|
|
1523
2754
|
"command": "management:delete-mailbox",
|
|
1524
2755
|
"description": "Delete a mailbox",
|
|
1525
2756
|
"headerParams": [],
|
|
@@ -1529,15 +2760,20 @@ export const operations = {
|
|
|
1529
2760
|
"pathParams": [
|
|
1530
2761
|
{
|
|
1531
2762
|
"name": "public_id",
|
|
1532
|
-
"required": true
|
|
2763
|
+
"required": true,
|
|
2764
|
+
"schema": {
|
|
2765
|
+
"type": "string"
|
|
2766
|
+
}
|
|
1533
2767
|
}
|
|
1534
2768
|
],
|
|
1535
2769
|
"queryParams": [],
|
|
2770
|
+
"responseKind": "json",
|
|
1536
2771
|
"requestBodyRequired": false,
|
|
1537
2772
|
"requiredKeyKind": "root",
|
|
1538
2773
|
"surface": "management"
|
|
1539
2774
|
},
|
|
1540
2775
|
managementDeleteMailboxKey: {
|
|
2776
|
+
"bodyKind": "none",
|
|
1541
2777
|
"command": "management:delete-mailbox-key",
|
|
1542
2778
|
"description": "Revoke a mailbox API key",
|
|
1543
2779
|
"headerParams": [],
|
|
@@ -1547,19 +2783,27 @@ export const operations = {
|
|
|
1547
2783
|
"pathParams": [
|
|
1548
2784
|
{
|
|
1549
2785
|
"name": "public_id",
|
|
1550
|
-
"required": true
|
|
2786
|
+
"required": true,
|
|
2787
|
+
"schema": {
|
|
2788
|
+
"type": "string"
|
|
2789
|
+
}
|
|
1551
2790
|
},
|
|
1552
2791
|
{
|
|
1553
2792
|
"name": "key_id",
|
|
1554
|
-
"required": true
|
|
2793
|
+
"required": true,
|
|
2794
|
+
"schema": {
|
|
2795
|
+
"type": "string"
|
|
2796
|
+
}
|
|
1555
2797
|
}
|
|
1556
2798
|
],
|
|
1557
2799
|
"queryParams": [],
|
|
2800
|
+
"responseKind": "json",
|
|
1558
2801
|
"requestBodyRequired": false,
|
|
1559
2802
|
"requiredKeyKind": "root",
|
|
1560
2803
|
"surface": "management"
|
|
1561
2804
|
},
|
|
1562
2805
|
managementDeleteProvider: {
|
|
2806
|
+
"bodyKind": "none",
|
|
1563
2807
|
"command": "management:delete-provider",
|
|
1564
2808
|
"description": "Delete a sending account",
|
|
1565
2809
|
"headerParams": [],
|
|
@@ -1569,15 +2813,20 @@ export const operations = {
|
|
|
1569
2813
|
"pathParams": [
|
|
1570
2814
|
{
|
|
1571
2815
|
"name": "public_id",
|
|
1572
|
-
"required": true
|
|
2816
|
+
"required": true,
|
|
2817
|
+
"schema": {
|
|
2818
|
+
"type": "string"
|
|
2819
|
+
}
|
|
1573
2820
|
}
|
|
1574
2821
|
],
|
|
1575
2822
|
"queryParams": [],
|
|
2823
|
+
"responseKind": "json",
|
|
1576
2824
|
"requestBodyRequired": false,
|
|
1577
2825
|
"requiredKeyKind": "root",
|
|
1578
2826
|
"surface": "management"
|
|
1579
2827
|
},
|
|
1580
2828
|
managementDeleteWebhook: {
|
|
2829
|
+
"bodyKind": "none",
|
|
1581
2830
|
"command": "management:delete-webhook",
|
|
1582
2831
|
"description": "Delete a webhook subscription",
|
|
1583
2832
|
"headerParams": [],
|
|
@@ -1587,15 +2836,20 @@ export const operations = {
|
|
|
1587
2836
|
"pathParams": [
|
|
1588
2837
|
{
|
|
1589
2838
|
"name": "public_id",
|
|
1590
|
-
"required": true
|
|
2839
|
+
"required": true,
|
|
2840
|
+
"schema": {
|
|
2841
|
+
"type": "string"
|
|
2842
|
+
}
|
|
1591
2843
|
}
|
|
1592
2844
|
],
|
|
1593
2845
|
"queryParams": [],
|
|
2846
|
+
"responseKind": "json",
|
|
1594
2847
|
"requestBodyRequired": false,
|
|
1595
2848
|
"requiredKeyKind": "root",
|
|
1596
2849
|
"surface": "management"
|
|
1597
2850
|
},
|
|
1598
2851
|
managementGetDeliveryPayload: {
|
|
2852
|
+
"bodyKind": "none",
|
|
1599
2853
|
"command": "management:get-delivery-payload",
|
|
1600
2854
|
"description": "Get a webhook delivery payload",
|
|
1601
2855
|
"headerParams": [],
|
|
@@ -1605,25 +2859,36 @@ export const operations = {
|
|
|
1605
2859
|
"pathParams": [
|
|
1606
2860
|
{
|
|
1607
2861
|
"name": "public_id",
|
|
1608
|
-
"required": true
|
|
2862
|
+
"required": true,
|
|
2863
|
+
"schema": {
|
|
2864
|
+
"type": "string"
|
|
2865
|
+
}
|
|
1609
2866
|
},
|
|
1610
2867
|
{
|
|
1611
2868
|
"name": "delivery_id",
|
|
1612
|
-
"required": true
|
|
2869
|
+
"required": true,
|
|
2870
|
+
"schema": {
|
|
2871
|
+
"type": "string"
|
|
2872
|
+
}
|
|
1613
2873
|
}
|
|
1614
2874
|
],
|
|
1615
2875
|
"queryParams": [],
|
|
2876
|
+
"responseKind": "json",
|
|
1616
2877
|
"requestBodyRequired": false,
|
|
1617
2878
|
"requiredKeyKind": "root",
|
|
1618
2879
|
"surface": "management"
|
|
1619
2880
|
},
|
|
1620
2881
|
managementGetDomain: {
|
|
2882
|
+
"bodyKind": "none",
|
|
1621
2883
|
"command": "management:domains:get",
|
|
1622
2884
|
"description": "Get a mailbox domain",
|
|
1623
2885
|
"headerParams": [
|
|
1624
2886
|
{
|
|
1625
2887
|
"name": "If-None-Match",
|
|
1626
|
-
"required": false
|
|
2888
|
+
"required": false,
|
|
2889
|
+
"schema": {
|
|
2890
|
+
"type": "string"
|
|
2891
|
+
}
|
|
1627
2892
|
}
|
|
1628
2893
|
],
|
|
1629
2894
|
"method": "get",
|
|
@@ -1632,21 +2897,29 @@ export const operations = {
|
|
|
1632
2897
|
"pathParams": [
|
|
1633
2898
|
{
|
|
1634
2899
|
"name": "public_id",
|
|
1635
|
-
"required": true
|
|
2900
|
+
"required": true,
|
|
2901
|
+
"schema": {
|
|
2902
|
+
"type": "string"
|
|
2903
|
+
}
|
|
1636
2904
|
}
|
|
1637
2905
|
],
|
|
1638
2906
|
"queryParams": [],
|
|
2907
|
+
"responseKind": "json",
|
|
1639
2908
|
"requestBodyRequired": false,
|
|
1640
2909
|
"requiredKeyKind": "root",
|
|
1641
2910
|
"surface": "management"
|
|
1642
2911
|
},
|
|
1643
2912
|
managementGetDomainFilters: {
|
|
2913
|
+
"bodyKind": "none",
|
|
1644
2914
|
"command": "management:get-domain-filters",
|
|
1645
2915
|
"description": "Get domain-wide sender filters",
|
|
1646
2916
|
"headerParams": [
|
|
1647
2917
|
{
|
|
1648
2918
|
"name": "If-None-Match",
|
|
1649
|
-
"required": false
|
|
2919
|
+
"required": false,
|
|
2920
|
+
"schema": {
|
|
2921
|
+
"type": "string"
|
|
2922
|
+
}
|
|
1650
2923
|
}
|
|
1651
2924
|
],
|
|
1652
2925
|
"method": "get",
|
|
@@ -1655,15 +2928,20 @@ export const operations = {
|
|
|
1655
2928
|
"pathParams": [
|
|
1656
2929
|
{
|
|
1657
2930
|
"name": "public_id",
|
|
1658
|
-
"required": true
|
|
2931
|
+
"required": true,
|
|
2932
|
+
"schema": {
|
|
2933
|
+
"type": "string"
|
|
2934
|
+
}
|
|
1659
2935
|
}
|
|
1660
2936
|
],
|
|
1661
2937
|
"queryParams": [],
|
|
2938
|
+
"responseKind": "json",
|
|
1662
2939
|
"requestBodyRequired": false,
|
|
1663
2940
|
"requiredKeyKind": "root",
|
|
1664
2941
|
"surface": "management"
|
|
1665
2942
|
},
|
|
1666
2943
|
managementGetDomainZoneFile: {
|
|
2944
|
+
"bodyKind": "none",
|
|
1667
2945
|
"command": "management:get-domain-zone-file",
|
|
1668
2946
|
"description": "Download a domain as a zone file",
|
|
1669
2947
|
"headerParams": [],
|
|
@@ -1673,21 +2951,29 @@ export const operations = {
|
|
|
1673
2951
|
"pathParams": [
|
|
1674
2952
|
{
|
|
1675
2953
|
"name": "public_id",
|
|
1676
|
-
"required": true
|
|
2954
|
+
"required": true,
|
|
2955
|
+
"schema": {
|
|
2956
|
+
"type": "string"
|
|
2957
|
+
}
|
|
1677
2958
|
}
|
|
1678
2959
|
],
|
|
1679
2960
|
"queryParams": [],
|
|
2961
|
+
"responseKind": "text",
|
|
1680
2962
|
"requestBodyRequired": false,
|
|
1681
2963
|
"requiredKeyKind": "root",
|
|
1682
2964
|
"surface": "management"
|
|
1683
2965
|
},
|
|
1684
2966
|
managementGetEmailLog: {
|
|
2967
|
+
"bodyKind": "none",
|
|
1685
2968
|
"command": "management:get-email-log",
|
|
1686
2969
|
"description": "Get delivery log",
|
|
1687
2970
|
"headerParams": [
|
|
1688
2971
|
{
|
|
1689
2972
|
"name": "If-None-Match",
|
|
1690
|
-
"required": false
|
|
2973
|
+
"required": false,
|
|
2974
|
+
"schema": {
|
|
2975
|
+
"type": "string"
|
|
2976
|
+
}
|
|
1691
2977
|
}
|
|
1692
2978
|
],
|
|
1693
2979
|
"method": "get",
|
|
@@ -1696,15 +2982,20 @@ export const operations = {
|
|
|
1696
2982
|
"pathParams": [
|
|
1697
2983
|
{
|
|
1698
2984
|
"name": "public_id",
|
|
1699
|
-
"required": true
|
|
2985
|
+
"required": true,
|
|
2986
|
+
"schema": {
|
|
2987
|
+
"type": "string"
|
|
2988
|
+
}
|
|
1700
2989
|
}
|
|
1701
2990
|
],
|
|
1702
2991
|
"queryParams": [],
|
|
2992
|
+
"responseKind": "json",
|
|
1703
2993
|
"requestBodyRequired": false,
|
|
1704
2994
|
"requiredKeyKind": "root",
|
|
1705
2995
|
"surface": "management"
|
|
1706
2996
|
},
|
|
1707
2997
|
managementGetEmailMetrics: {
|
|
2998
|
+
"bodyKind": "none",
|
|
1708
2999
|
"command": "management:get-email-metrics",
|
|
1709
3000
|
"description": "Get email metrics",
|
|
1710
3001
|
"headerParams": [],
|
|
@@ -1715,30 +3006,56 @@ export const operations = {
|
|
|
1715
3006
|
"queryParams": [
|
|
1716
3007
|
{
|
|
1717
3008
|
"name": "window",
|
|
1718
|
-
"required": false
|
|
3009
|
+
"required": false,
|
|
3010
|
+
"schema": {
|
|
3011
|
+
"type": "string",
|
|
3012
|
+
"enum": [
|
|
3013
|
+
"24h",
|
|
3014
|
+
"7d",
|
|
3015
|
+
"30d"
|
|
3016
|
+
]
|
|
3017
|
+
}
|
|
1719
3018
|
},
|
|
1720
3019
|
{
|
|
1721
3020
|
"name": "from_date",
|
|
1722
|
-
"required": false
|
|
3021
|
+
"required": false,
|
|
3022
|
+
"schema": {
|
|
3023
|
+
"type": "string"
|
|
3024
|
+
}
|
|
1723
3025
|
},
|
|
1724
3026
|
{
|
|
1725
3027
|
"name": "to_date",
|
|
1726
|
-
"required": false
|
|
3028
|
+
"required": false,
|
|
3029
|
+
"schema": {
|
|
3030
|
+
"type": "string"
|
|
3031
|
+
}
|
|
1727
3032
|
},
|
|
1728
3033
|
{
|
|
1729
3034
|
"name": "granularity",
|
|
1730
|
-
"required": false
|
|
3035
|
+
"required": false,
|
|
3036
|
+
"schema": {
|
|
3037
|
+
"type": "string",
|
|
3038
|
+
"enum": [
|
|
3039
|
+
"hourly",
|
|
3040
|
+
"daily"
|
|
3041
|
+
]
|
|
3042
|
+
}
|
|
1731
3043
|
},
|
|
1732
3044
|
{
|
|
1733
3045
|
"name": "provider_id",
|
|
1734
|
-
"required": false
|
|
3046
|
+
"required": false,
|
|
3047
|
+
"schema": {
|
|
3048
|
+
"type": "string"
|
|
3049
|
+
}
|
|
1735
3050
|
}
|
|
1736
3051
|
],
|
|
3052
|
+
"responseKind": "json",
|
|
1737
3053
|
"requestBodyRequired": false,
|
|
1738
3054
|
"requiredKeyKind": "root",
|
|
1739
3055
|
"surface": "management"
|
|
1740
3056
|
},
|
|
1741
3057
|
managementGetInboxLog: {
|
|
3058
|
+
"bodyKind": "none",
|
|
1742
3059
|
"command": "management:get-inbox-log",
|
|
1743
3060
|
"description": "Get incoming log",
|
|
1744
3061
|
"headerParams": [],
|
|
@@ -1748,21 +3065,29 @@ export const operations = {
|
|
|
1748
3065
|
"pathParams": [
|
|
1749
3066
|
{
|
|
1750
3067
|
"name": "public_id",
|
|
1751
|
-
"required": true
|
|
3068
|
+
"required": true,
|
|
3069
|
+
"schema": {
|
|
3070
|
+
"type": "string"
|
|
3071
|
+
}
|
|
1752
3072
|
}
|
|
1753
3073
|
],
|
|
1754
3074
|
"queryParams": [],
|
|
3075
|
+
"responseKind": "json",
|
|
1755
3076
|
"requestBodyRequired": false,
|
|
1756
3077
|
"requiredKeyKind": "root",
|
|
1757
3078
|
"surface": "management"
|
|
1758
3079
|
},
|
|
1759
3080
|
managementGetMailbox: {
|
|
3081
|
+
"bodyKind": "none",
|
|
1760
3082
|
"command": "management:get-mailbox",
|
|
1761
3083
|
"description": "Get a mailbox",
|
|
1762
3084
|
"headerParams": [
|
|
1763
3085
|
{
|
|
1764
3086
|
"name": "If-None-Match",
|
|
1765
|
-
"required": false
|
|
3087
|
+
"required": false,
|
|
3088
|
+
"schema": {
|
|
3089
|
+
"type": "string"
|
|
3090
|
+
}
|
|
1766
3091
|
}
|
|
1767
3092
|
],
|
|
1768
3093
|
"method": "get",
|
|
@@ -1771,21 +3096,29 @@ export const operations = {
|
|
|
1771
3096
|
"pathParams": [
|
|
1772
3097
|
{
|
|
1773
3098
|
"name": "public_id",
|
|
1774
|
-
"required": true
|
|
3099
|
+
"required": true,
|
|
3100
|
+
"schema": {
|
|
3101
|
+
"type": "string"
|
|
3102
|
+
}
|
|
1775
3103
|
}
|
|
1776
3104
|
],
|
|
1777
3105
|
"queryParams": [],
|
|
3106
|
+
"responseKind": "json",
|
|
1778
3107
|
"requestBodyRequired": false,
|
|
1779
3108
|
"requiredKeyKind": "root",
|
|
1780
3109
|
"surface": "management"
|
|
1781
3110
|
},
|
|
1782
3111
|
managementGetMailboxFilters: {
|
|
3112
|
+
"bodyKind": "none",
|
|
1783
3113
|
"command": "management:get-mailbox-filters",
|
|
1784
3114
|
"description": "Get mailbox sender filters",
|
|
1785
3115
|
"headerParams": [
|
|
1786
3116
|
{
|
|
1787
3117
|
"name": "If-None-Match",
|
|
1788
|
-
"required": false
|
|
3118
|
+
"required": false,
|
|
3119
|
+
"schema": {
|
|
3120
|
+
"type": "string"
|
|
3121
|
+
}
|
|
1789
3122
|
}
|
|
1790
3123
|
],
|
|
1791
3124
|
"method": "get",
|
|
@@ -1794,21 +3127,29 @@ export const operations = {
|
|
|
1794
3127
|
"pathParams": [
|
|
1795
3128
|
{
|
|
1796
3129
|
"name": "public_id",
|
|
1797
|
-
"required": true
|
|
3130
|
+
"required": true,
|
|
3131
|
+
"schema": {
|
|
3132
|
+
"type": "string"
|
|
3133
|
+
}
|
|
1798
3134
|
}
|
|
1799
3135
|
],
|
|
1800
3136
|
"queryParams": [],
|
|
3137
|
+
"responseKind": "json",
|
|
1801
3138
|
"requestBodyRequired": false,
|
|
1802
3139
|
"requiredKeyKind": "root",
|
|
1803
3140
|
"surface": "management"
|
|
1804
3141
|
},
|
|
1805
3142
|
managementGetProvider: {
|
|
3143
|
+
"bodyKind": "none",
|
|
1806
3144
|
"command": "management:get-provider",
|
|
1807
3145
|
"description": "Get a sending account",
|
|
1808
3146
|
"headerParams": [
|
|
1809
3147
|
{
|
|
1810
3148
|
"name": "If-None-Match",
|
|
1811
|
-
"required": false
|
|
3149
|
+
"required": false,
|
|
3150
|
+
"schema": {
|
|
3151
|
+
"type": "string"
|
|
3152
|
+
}
|
|
1812
3153
|
}
|
|
1813
3154
|
],
|
|
1814
3155
|
"method": "get",
|
|
@@ -1817,15 +3158,20 @@ export const operations = {
|
|
|
1817
3158
|
"pathParams": [
|
|
1818
3159
|
{
|
|
1819
3160
|
"name": "public_id",
|
|
1820
|
-
"required": true
|
|
3161
|
+
"required": true,
|
|
3162
|
+
"schema": {
|
|
3163
|
+
"type": "string"
|
|
3164
|
+
}
|
|
1821
3165
|
}
|
|
1822
3166
|
],
|
|
1823
3167
|
"queryParams": [],
|
|
3168
|
+
"responseKind": "json",
|
|
1824
3169
|
"requestBodyRequired": false,
|
|
1825
3170
|
"requiredKeyKind": "root",
|
|
1826
3171
|
"surface": "management"
|
|
1827
3172
|
},
|
|
1828
3173
|
managementGetProviderLimits: {
|
|
3174
|
+
"bodyKind": "none",
|
|
1829
3175
|
"command": "management:get-provider-limits",
|
|
1830
3176
|
"description": "Get sending account limits",
|
|
1831
3177
|
"headerParams": [],
|
|
@@ -1834,11 +3180,13 @@ export const operations = {
|
|
|
1834
3180
|
"path": "/providers/limits",
|
|
1835
3181
|
"pathParams": [],
|
|
1836
3182
|
"queryParams": [],
|
|
3183
|
+
"responseKind": "json",
|
|
1837
3184
|
"requestBodyRequired": false,
|
|
1838
3185
|
"requiredKeyKind": "root",
|
|
1839
3186
|
"surface": "management"
|
|
1840
3187
|
},
|
|
1841
3188
|
managementGetProviderStats: {
|
|
3189
|
+
"bodyKind": "none",
|
|
1842
3190
|
"command": "management:get-provider-stats",
|
|
1843
3191
|
"description": "Get sending account statistics",
|
|
1844
3192
|
"headerParams": [],
|
|
@@ -1847,11 +3195,13 @@ export const operations = {
|
|
|
1847
3195
|
"path": "/providers/stats",
|
|
1848
3196
|
"pathParams": [],
|
|
1849
3197
|
"queryParams": [],
|
|
3198
|
+
"responseKind": "json",
|
|
1850
3199
|
"requestBodyRequired": false,
|
|
1851
3200
|
"requiredKeyKind": "root",
|
|
1852
3201
|
"surface": "management"
|
|
1853
3202
|
},
|
|
1854
3203
|
managementGetProviderUsage: {
|
|
3204
|
+
"bodyKind": "none",
|
|
1855
3205
|
"command": "management:get-provider-usage",
|
|
1856
3206
|
"description": "Get sending account usage",
|
|
1857
3207
|
"headerParams": [],
|
|
@@ -1860,11 +3210,13 @@ export const operations = {
|
|
|
1860
3210
|
"path": "/providers/usage",
|
|
1861
3211
|
"pathParams": [],
|
|
1862
3212
|
"queryParams": [],
|
|
3213
|
+
"responseKind": "json",
|
|
1863
3214
|
"requestBodyRequired": false,
|
|
1864
3215
|
"requiredKeyKind": "root",
|
|
1865
3216
|
"surface": "management"
|
|
1866
3217
|
},
|
|
1867
3218
|
managementGetSharedAmazonSesLimitRequest: {
|
|
3219
|
+
"bodyKind": "none",
|
|
1868
3220
|
"command": "management:get-shared-amazon-ses-limit-request",
|
|
1869
3221
|
"description": "Get shared Amazon SES limit request state",
|
|
1870
3222
|
"headerParams": [],
|
|
@@ -1873,11 +3225,13 @@ export const operations = {
|
|
|
1873
3225
|
"path": "/providers/shared-amazon-ses-limit-request",
|
|
1874
3226
|
"pathParams": [],
|
|
1875
3227
|
"queryParams": [],
|
|
3228
|
+
"responseKind": "json",
|
|
1876
3229
|
"requestBodyRequired": false,
|
|
1877
3230
|
"requiredKeyKind": "root",
|
|
1878
3231
|
"surface": "management"
|
|
1879
3232
|
},
|
|
1880
3233
|
managementGetSpendSummary: {
|
|
3234
|
+
"bodyKind": "none",
|
|
1881
3235
|
"command": "management:get-spend-summary",
|
|
1882
3236
|
"description": "Get spend summary",
|
|
1883
3237
|
"headerParams": [],
|
|
@@ -1888,20 +3242,33 @@ export const operations = {
|
|
|
1888
3242
|
"queryParams": [
|
|
1889
3243
|
{
|
|
1890
3244
|
"name": "days",
|
|
1891
|
-
"required": false
|
|
3245
|
+
"required": false,
|
|
3246
|
+
"schema": {
|
|
3247
|
+
"type": "string",
|
|
3248
|
+
"enum": [
|
|
3249
|
+
"7",
|
|
3250
|
+
"30",
|
|
3251
|
+
"90"
|
|
3252
|
+
]
|
|
3253
|
+
}
|
|
1892
3254
|
}
|
|
1893
3255
|
],
|
|
3256
|
+
"responseKind": "json",
|
|
1894
3257
|
"requestBodyRequired": false,
|
|
1895
3258
|
"requiredKeyKind": "root",
|
|
1896
3259
|
"surface": "management"
|
|
1897
3260
|
},
|
|
1898
3261
|
managementGetWebhook: {
|
|
3262
|
+
"bodyKind": "none",
|
|
1899
3263
|
"command": "management:get-webhook",
|
|
1900
3264
|
"description": "Get a webhook subscription",
|
|
1901
3265
|
"headerParams": [
|
|
1902
3266
|
{
|
|
1903
3267
|
"name": "If-None-Match",
|
|
1904
|
-
"required": false
|
|
3268
|
+
"required": false,
|
|
3269
|
+
"schema": {
|
|
3270
|
+
"type": "string"
|
|
3271
|
+
}
|
|
1905
3272
|
}
|
|
1906
3273
|
],
|
|
1907
3274
|
"method": "get",
|
|
@@ -1910,15 +3277,20 @@ export const operations = {
|
|
|
1910
3277
|
"pathParams": [
|
|
1911
3278
|
{
|
|
1912
3279
|
"name": "public_id",
|
|
1913
|
-
"required": true
|
|
3280
|
+
"required": true,
|
|
3281
|
+
"schema": {
|
|
3282
|
+
"type": "string"
|
|
3283
|
+
}
|
|
1914
3284
|
}
|
|
1915
3285
|
],
|
|
1916
3286
|
"queryParams": [],
|
|
3287
|
+
"responseKind": "json",
|
|
1917
3288
|
"requestBodyRequired": false,
|
|
1918
3289
|
"requiredKeyKind": "root",
|
|
1919
3290
|
"surface": "management"
|
|
1920
3291
|
},
|
|
1921
3292
|
managementListBalance: {
|
|
3293
|
+
"bodyKind": "none",
|
|
1922
3294
|
"command": "management:list-balance",
|
|
1923
3295
|
"description": "Get current balance",
|
|
1924
3296
|
"headerParams": [],
|
|
@@ -1927,11 +3299,13 @@ export const operations = {
|
|
|
1927
3299
|
"path": "/billing/balance",
|
|
1928
3300
|
"pathParams": [],
|
|
1929
3301
|
"queryParams": [],
|
|
3302
|
+
"responseKind": "json",
|
|
1930
3303
|
"requestBodyRequired": false,
|
|
1931
3304
|
"requiredKeyKind": "root",
|
|
1932
3305
|
"surface": "management"
|
|
1933
3306
|
},
|
|
1934
3307
|
managementListDelivery: {
|
|
3308
|
+
"bodyKind": "none",
|
|
1935
3309
|
"command": "management:list-delivery",
|
|
1936
3310
|
"description": "List webhook delivery attempts",
|
|
1937
3311
|
"headerParams": [],
|
|
@@ -1941,32 +3315,67 @@ export const operations = {
|
|
|
1941
3315
|
"pathParams": [
|
|
1942
3316
|
{
|
|
1943
3317
|
"name": "public_id",
|
|
1944
|
-
"required": true
|
|
3318
|
+
"required": true,
|
|
3319
|
+
"schema": {
|
|
3320
|
+
"type": "string"
|
|
3321
|
+
}
|
|
1945
3322
|
}
|
|
1946
3323
|
],
|
|
1947
3324
|
"queryParams": [
|
|
1948
3325
|
{
|
|
1949
3326
|
"name": "cursor",
|
|
1950
|
-
"required": false
|
|
3327
|
+
"required": false,
|
|
3328
|
+
"schema": {
|
|
3329
|
+
"type": "string"
|
|
3330
|
+
}
|
|
1951
3331
|
},
|
|
1952
3332
|
{
|
|
1953
3333
|
"name": "limit",
|
|
1954
|
-
"required": false
|
|
3334
|
+
"required": false,
|
|
3335
|
+
"schema": {
|
|
3336
|
+
"type": "integer",
|
|
3337
|
+
"minimum": 1,
|
|
3338
|
+
"maximum": 100
|
|
3339
|
+
}
|
|
1955
3340
|
},
|
|
1956
3341
|
{
|
|
1957
3342
|
"name": "event_type",
|
|
1958
|
-
"required": false
|
|
3343
|
+
"required": false,
|
|
3344
|
+
"schema": {
|
|
3345
|
+
"type": "string",
|
|
3346
|
+
"enum": [
|
|
3347
|
+
"message.delivered",
|
|
3348
|
+
"message.bounced",
|
|
3349
|
+
"message.complained",
|
|
3350
|
+
"message.rejected",
|
|
3351
|
+
"message.delivery_delayed",
|
|
3352
|
+
"message.received",
|
|
3353
|
+
"message.received.spam",
|
|
3354
|
+
"sendmux.test"
|
|
3355
|
+
]
|
|
3356
|
+
}
|
|
1959
3357
|
},
|
|
1960
3358
|
{
|
|
1961
3359
|
"name": "result",
|
|
1962
|
-
"required": false
|
|
3360
|
+
"required": false,
|
|
3361
|
+
"schema": {
|
|
3362
|
+
"type": "string",
|
|
3363
|
+
"enum": [
|
|
3364
|
+
"success",
|
|
3365
|
+
"retrying",
|
|
3366
|
+
"failed",
|
|
3367
|
+
"permanent_failure"
|
|
3368
|
+
]
|
|
3369
|
+
}
|
|
1963
3370
|
}
|
|
1964
3371
|
],
|
|
3372
|
+
"responseKind": "json",
|
|
1965
3373
|
"requestBodyRequired": false,
|
|
1966
3374
|
"requiredKeyKind": "root",
|
|
1967
3375
|
"surface": "management"
|
|
1968
3376
|
},
|
|
1969
3377
|
managementListDomains: {
|
|
3378
|
+
"bodyKind": "none",
|
|
1970
3379
|
"command": "management:domains:list",
|
|
1971
3380
|
"description": "List mailbox domains",
|
|
1972
3381
|
"headerParams": [],
|
|
@@ -1977,18 +3386,28 @@ export const operations = {
|
|
|
1977
3386
|
"queryParams": [
|
|
1978
3387
|
{
|
|
1979
3388
|
"name": "cursor",
|
|
1980
|
-
"required": false
|
|
3389
|
+
"required": false,
|
|
3390
|
+
"schema": {
|
|
3391
|
+
"type": "string"
|
|
3392
|
+
}
|
|
1981
3393
|
},
|
|
1982
3394
|
{
|
|
1983
3395
|
"name": "limit",
|
|
1984
|
-
"required": false
|
|
3396
|
+
"required": false,
|
|
3397
|
+
"schema": {
|
|
3398
|
+
"type": "integer",
|
|
3399
|
+
"minimum": 1,
|
|
3400
|
+
"maximum": 100
|
|
3401
|
+
}
|
|
1985
3402
|
}
|
|
1986
3403
|
],
|
|
3404
|
+
"responseKind": "json",
|
|
1987
3405
|
"requestBodyRequired": false,
|
|
1988
3406
|
"requiredKeyKind": "root",
|
|
1989
3407
|
"surface": "management"
|
|
1990
3408
|
},
|
|
1991
3409
|
managementListEmailLogs: {
|
|
3410
|
+
"bodyKind": "none",
|
|
1992
3411
|
"command": "management:list-email-logs",
|
|
1993
3412
|
"description": "List delivery logs",
|
|
1994
3413
|
"headerParams": [],
|
|
@@ -1999,38 +3418,69 @@ export const operations = {
|
|
|
1999
3418
|
"queryParams": [
|
|
2000
3419
|
{
|
|
2001
3420
|
"name": "limit",
|
|
2002
|
-
"required": false
|
|
3421
|
+
"required": false,
|
|
3422
|
+
"schema": {
|
|
3423
|
+
"type": "integer",
|
|
3424
|
+
"minimum": 1,
|
|
3425
|
+
"maximum": 100
|
|
3426
|
+
}
|
|
2003
3427
|
},
|
|
2004
3428
|
{
|
|
2005
3429
|
"name": "cursor",
|
|
2006
|
-
"required": false
|
|
3430
|
+
"required": false,
|
|
3431
|
+
"schema": {
|
|
3432
|
+
"type": "string"
|
|
3433
|
+
}
|
|
2007
3434
|
},
|
|
2008
3435
|
{
|
|
2009
3436
|
"name": "status",
|
|
2010
|
-
"required": false
|
|
3437
|
+
"required": false,
|
|
3438
|
+
"schema": {
|
|
3439
|
+
"type": "string",
|
|
3440
|
+
"enum": [
|
|
3441
|
+
"pending",
|
|
3442
|
+
"sent",
|
|
3443
|
+
"failed",
|
|
3444
|
+
"rejected"
|
|
3445
|
+
]
|
|
3446
|
+
}
|
|
2011
3447
|
},
|
|
2012
3448
|
{
|
|
2013
3449
|
"name": "from_date",
|
|
2014
|
-
"required": false
|
|
3450
|
+
"required": false,
|
|
3451
|
+
"schema": {
|
|
3452
|
+
"type": "string"
|
|
3453
|
+
}
|
|
2015
3454
|
},
|
|
2016
3455
|
{
|
|
2017
3456
|
"name": "to_date",
|
|
2018
|
-
"required": false
|
|
3457
|
+
"required": false,
|
|
3458
|
+
"schema": {
|
|
3459
|
+
"type": "string"
|
|
3460
|
+
}
|
|
2019
3461
|
},
|
|
2020
3462
|
{
|
|
2021
3463
|
"name": "provider_id",
|
|
2022
|
-
"required": false
|
|
3464
|
+
"required": false,
|
|
3465
|
+
"schema": {
|
|
3466
|
+
"type": "string"
|
|
3467
|
+
}
|
|
2023
3468
|
},
|
|
2024
3469
|
{
|
|
2025
3470
|
"name": "search",
|
|
2026
|
-
"required": false
|
|
3471
|
+
"required": false,
|
|
3472
|
+
"schema": {
|
|
3473
|
+
"type": "string"
|
|
3474
|
+
}
|
|
2027
3475
|
}
|
|
2028
3476
|
],
|
|
3477
|
+
"responseKind": "json",
|
|
2029
3478
|
"requestBodyRequired": false,
|
|
2030
3479
|
"requiredKeyKind": "root",
|
|
2031
3480
|
"surface": "management"
|
|
2032
3481
|
},
|
|
2033
3482
|
managementListInboxLogs: {
|
|
3483
|
+
"bodyKind": "none",
|
|
2034
3484
|
"command": "management:list-inbox-logs",
|
|
2035
3485
|
"description": "List incoming logs",
|
|
2036
3486
|
"headerParams": [],
|
|
@@ -2041,38 +3491,67 @@ export const operations = {
|
|
|
2041
3491
|
"queryParams": [
|
|
2042
3492
|
{
|
|
2043
3493
|
"name": "limit",
|
|
2044
|
-
"required": false
|
|
3494
|
+
"required": false,
|
|
3495
|
+
"schema": {
|
|
3496
|
+
"type": "integer",
|
|
3497
|
+
"minimum": 1,
|
|
3498
|
+
"maximum": 100
|
|
3499
|
+
}
|
|
2045
3500
|
},
|
|
2046
3501
|
{
|
|
2047
3502
|
"name": "cursor",
|
|
2048
|
-
"required": false
|
|
3503
|
+
"required": false,
|
|
3504
|
+
"schema": {
|
|
3505
|
+
"type": "string"
|
|
3506
|
+
}
|
|
2049
3507
|
},
|
|
2050
3508
|
{
|
|
2051
3509
|
"name": "mailbox_id",
|
|
2052
|
-
"required": false
|
|
3510
|
+
"required": false,
|
|
3511
|
+
"schema": {
|
|
3512
|
+
"type": "string"
|
|
3513
|
+
}
|
|
2053
3514
|
},
|
|
2054
3515
|
{
|
|
2055
3516
|
"name": "event_type",
|
|
2056
|
-
"required": false
|
|
3517
|
+
"required": false,
|
|
3518
|
+
"schema": {
|
|
3519
|
+
"type": "string",
|
|
3520
|
+
"enum": [
|
|
3521
|
+
"message.received",
|
|
3522
|
+
"message.received.spam"
|
|
3523
|
+
]
|
|
3524
|
+
}
|
|
2057
3525
|
},
|
|
2058
3526
|
{
|
|
2059
3527
|
"name": "from_date",
|
|
2060
|
-
"required": false
|
|
3528
|
+
"required": false,
|
|
3529
|
+
"schema": {
|
|
3530
|
+
"type": "string"
|
|
3531
|
+
}
|
|
2061
3532
|
},
|
|
2062
3533
|
{
|
|
2063
3534
|
"name": "to_date",
|
|
2064
|
-
"required": false
|
|
3535
|
+
"required": false,
|
|
3536
|
+
"schema": {
|
|
3537
|
+
"type": "string"
|
|
3538
|
+
}
|
|
2065
3539
|
},
|
|
2066
3540
|
{
|
|
2067
3541
|
"name": "search",
|
|
2068
|
-
"required": false
|
|
3542
|
+
"required": false,
|
|
3543
|
+
"schema": {
|
|
3544
|
+
"type": "string"
|
|
3545
|
+
}
|
|
2069
3546
|
}
|
|
2070
3547
|
],
|
|
3548
|
+
"responseKind": "json",
|
|
2071
3549
|
"requestBodyRequired": false,
|
|
2072
3550
|
"requiredKeyKind": "root",
|
|
2073
3551
|
"surface": "management"
|
|
2074
3552
|
},
|
|
2075
3553
|
managementListMailboxes: {
|
|
3554
|
+
"bodyKind": "none",
|
|
2076
3555
|
"command": "management:mailboxes:list",
|
|
2077
3556
|
"description": "List mailboxes",
|
|
2078
3557
|
"headerParams": [],
|
|
@@ -2083,22 +3562,38 @@ export const operations = {
|
|
|
2083
3562
|
"queryParams": [
|
|
2084
3563
|
{
|
|
2085
3564
|
"name": "cursor",
|
|
2086
|
-
"required": false
|
|
3565
|
+
"required": false,
|
|
3566
|
+
"schema": {
|
|
3567
|
+
"type": "string"
|
|
3568
|
+
}
|
|
2087
3569
|
},
|
|
2088
3570
|
{
|
|
2089
3571
|
"name": "limit",
|
|
2090
|
-
"required": false
|
|
3572
|
+
"required": false,
|
|
3573
|
+
"schema": {
|
|
3574
|
+
"type": "integer",
|
|
3575
|
+
"minimum": 1,
|
|
3576
|
+
"maximum": 100
|
|
3577
|
+
}
|
|
2091
3578
|
},
|
|
2092
3579
|
{
|
|
2093
3580
|
"name": "include_deleted",
|
|
2094
|
-
"required": false
|
|
3581
|
+
"required": false,
|
|
3582
|
+
"schema": {
|
|
3583
|
+
"type": "string",
|
|
3584
|
+
"enum": [
|
|
3585
|
+
"true"
|
|
3586
|
+
]
|
|
3587
|
+
}
|
|
2095
3588
|
}
|
|
2096
3589
|
],
|
|
3590
|
+
"responseKind": "json",
|
|
2097
3591
|
"requestBodyRequired": false,
|
|
2098
3592
|
"requiredKeyKind": "root",
|
|
2099
3593
|
"surface": "management"
|
|
2100
3594
|
},
|
|
2101
3595
|
managementListProviders: {
|
|
3596
|
+
"bodyKind": "none",
|
|
2102
3597
|
"command": "management:providers:list",
|
|
2103
3598
|
"description": "List sending accounts",
|
|
2104
3599
|
"headerParams": [],
|
|
@@ -2109,26 +3604,54 @@ export const operations = {
|
|
|
2109
3604
|
"queryParams": [
|
|
2110
3605
|
{
|
|
2111
3606
|
"name": "cursor",
|
|
2112
|
-
"required": false
|
|
3607
|
+
"required": false,
|
|
3608
|
+
"schema": {
|
|
3609
|
+
"type": "string"
|
|
3610
|
+
}
|
|
2113
3611
|
},
|
|
2114
3612
|
{
|
|
2115
3613
|
"name": "status",
|
|
2116
|
-
"required": false
|
|
3614
|
+
"required": false,
|
|
3615
|
+
"schema": {
|
|
3616
|
+
"type": "string",
|
|
3617
|
+
"enum": [
|
|
3618
|
+
"active",
|
|
3619
|
+
"inactive",
|
|
3620
|
+
"error",
|
|
3621
|
+
"pending"
|
|
3622
|
+
]
|
|
3623
|
+
}
|
|
2117
3624
|
},
|
|
2118
3625
|
{
|
|
2119
3626
|
"name": "type",
|
|
2120
|
-
"required": false
|
|
3627
|
+
"required": false,
|
|
3628
|
+
"schema": {
|
|
3629
|
+
"type": "string",
|
|
3630
|
+
"enum": [
|
|
3631
|
+
"smtp",
|
|
3632
|
+
"gmail_api",
|
|
3633
|
+
"outlook_api",
|
|
3634
|
+
"amazon_ses"
|
|
3635
|
+
]
|
|
3636
|
+
}
|
|
2121
3637
|
},
|
|
2122
3638
|
{
|
|
2123
3639
|
"name": "limit",
|
|
2124
|
-
"required": false
|
|
3640
|
+
"required": false,
|
|
3641
|
+
"schema": {
|
|
3642
|
+
"type": "integer",
|
|
3643
|
+
"minimum": 1,
|
|
3644
|
+
"maximum": 100
|
|
3645
|
+
}
|
|
2125
3646
|
}
|
|
2126
3647
|
],
|
|
3648
|
+
"responseKind": "json",
|
|
2127
3649
|
"requestBodyRequired": false,
|
|
2128
3650
|
"requiredKeyKind": "root",
|
|
2129
3651
|
"surface": "management"
|
|
2130
3652
|
},
|
|
2131
3653
|
managementListTransactions: {
|
|
3654
|
+
"bodyKind": "none",
|
|
2132
3655
|
"command": "management:list-transactions",
|
|
2133
3656
|
"description": "List transactions",
|
|
2134
3657
|
"headerParams": [],
|
|
@@ -2139,22 +3662,42 @@ export const operations = {
|
|
|
2139
3662
|
"queryParams": [
|
|
2140
3663
|
{
|
|
2141
3664
|
"name": "cursor",
|
|
2142
|
-
"required": false
|
|
3665
|
+
"required": false,
|
|
3666
|
+
"schema": {
|
|
3667
|
+
"type": "string"
|
|
3668
|
+
}
|
|
2143
3669
|
},
|
|
2144
3670
|
{
|
|
2145
3671
|
"name": "limit",
|
|
2146
|
-
"required": false
|
|
3672
|
+
"required": false,
|
|
3673
|
+
"schema": {
|
|
3674
|
+
"type": "integer",
|
|
3675
|
+
"minimum": 1,
|
|
3676
|
+
"maximum": 100
|
|
3677
|
+
}
|
|
2147
3678
|
},
|
|
2148
3679
|
{
|
|
2149
3680
|
"name": "type",
|
|
2150
|
-
"required": false
|
|
3681
|
+
"required": false,
|
|
3682
|
+
"schema": {
|
|
3683
|
+
"type": "string",
|
|
3684
|
+
"enum": [
|
|
3685
|
+
"PURCHASE",
|
|
3686
|
+
"USAGE",
|
|
3687
|
+
"AUTO_TOPUP",
|
|
3688
|
+
"REFUND",
|
|
3689
|
+
"ADJUSTMENT"
|
|
3690
|
+
]
|
|
3691
|
+
}
|
|
2151
3692
|
}
|
|
2152
3693
|
],
|
|
3694
|
+
"responseKind": "json",
|
|
2153
3695
|
"requestBodyRequired": false,
|
|
2154
3696
|
"requiredKeyKind": "root",
|
|
2155
3697
|
"surface": "management"
|
|
2156
3698
|
},
|
|
2157
3699
|
managementListWebhooks: {
|
|
3700
|
+
"bodyKind": "none",
|
|
2158
3701
|
"command": "management:list-webhooks",
|
|
2159
3702
|
"description": "List webhook subscriptions",
|
|
2160
3703
|
"headerParams": [],
|
|
@@ -2165,24 +3708,38 @@ export const operations = {
|
|
|
2165
3708
|
"queryParams": [
|
|
2166
3709
|
{
|
|
2167
3710
|
"name": "cursor",
|
|
2168
|
-
"required": false
|
|
3711
|
+
"required": false,
|
|
3712
|
+
"schema": {
|
|
3713
|
+
"type": "string"
|
|
3714
|
+
}
|
|
2169
3715
|
},
|
|
2170
3716
|
{
|
|
2171
3717
|
"name": "limit",
|
|
2172
|
-
"required": false
|
|
3718
|
+
"required": false,
|
|
3719
|
+
"schema": {
|
|
3720
|
+
"type": "integer",
|
|
3721
|
+
"minimum": 1,
|
|
3722
|
+
"maximum": 100
|
|
3723
|
+
}
|
|
2173
3724
|
}
|
|
2174
3725
|
],
|
|
3726
|
+
"responseKind": "json",
|
|
2175
3727
|
"requestBodyRequired": false,
|
|
2176
3728
|
"requiredKeyKind": "root",
|
|
2177
3729
|
"surface": "management"
|
|
2178
3730
|
},
|
|
2179
3731
|
managementRequestSendingAccountLimitIncrease: {
|
|
3732
|
+
"bodyKind": "none",
|
|
2180
3733
|
"command": "management:request-sending-account-limit-increase",
|
|
2181
3734
|
"description": "Request a sending account limit increase",
|
|
2182
3735
|
"headerParams": [
|
|
2183
3736
|
{
|
|
2184
3737
|
"name": "Idempotency-Key",
|
|
2185
|
-
"required": false
|
|
3738
|
+
"required": false,
|
|
3739
|
+
"schema": {
|
|
3740
|
+
"type": "string",
|
|
3741
|
+
"maxLength": 255
|
|
3742
|
+
}
|
|
2186
3743
|
}
|
|
2187
3744
|
],
|
|
2188
3745
|
"method": "post",
|
|
@@ -2190,17 +3747,23 @@ export const operations = {
|
|
|
2190
3747
|
"path": "/providers/limits/sending-accounts/request-increase",
|
|
2191
3748
|
"pathParams": [],
|
|
2192
3749
|
"queryParams": [],
|
|
3750
|
+
"responseKind": "json",
|
|
2193
3751
|
"requestBodyRequired": false,
|
|
2194
3752
|
"requiredKeyKind": "root",
|
|
2195
3753
|
"surface": "management"
|
|
2196
3754
|
},
|
|
2197
3755
|
managementResumeMailbox: {
|
|
3756
|
+
"bodyKind": "none",
|
|
2198
3757
|
"command": "management:resume-mailbox",
|
|
2199
3758
|
"description": "Resume a mailbox",
|
|
2200
3759
|
"headerParams": [
|
|
2201
3760
|
{
|
|
2202
3761
|
"name": "Idempotency-Key",
|
|
2203
|
-
"required": false
|
|
3762
|
+
"required": false,
|
|
3763
|
+
"schema": {
|
|
3764
|
+
"type": "string",
|
|
3765
|
+
"maxLength": 255
|
|
3766
|
+
}
|
|
2204
3767
|
}
|
|
2205
3768
|
],
|
|
2206
3769
|
"method": "post",
|
|
@@ -2209,21 +3772,30 @@ export const operations = {
|
|
|
2209
3772
|
"pathParams": [
|
|
2210
3773
|
{
|
|
2211
3774
|
"name": "public_id",
|
|
2212
|
-
"required": true
|
|
3775
|
+
"required": true,
|
|
3776
|
+
"schema": {
|
|
3777
|
+
"type": "string"
|
|
3778
|
+
}
|
|
2213
3779
|
}
|
|
2214
3780
|
],
|
|
2215
3781
|
"queryParams": [],
|
|
3782
|
+
"responseKind": "json",
|
|
2216
3783
|
"requestBodyRequired": false,
|
|
2217
3784
|
"requiredKeyKind": "root",
|
|
2218
3785
|
"surface": "management"
|
|
2219
3786
|
},
|
|
2220
3787
|
managementRotateWebhookSecret: {
|
|
3788
|
+
"bodyKind": "none",
|
|
2221
3789
|
"command": "management:rotate-webhook-secret",
|
|
2222
3790
|
"description": "Rotate the signing secret",
|
|
2223
3791
|
"headerParams": [
|
|
2224
3792
|
{
|
|
2225
3793
|
"name": "Idempotency-Key",
|
|
2226
|
-
"required": false
|
|
3794
|
+
"required": false,
|
|
3795
|
+
"schema": {
|
|
3796
|
+
"type": "string",
|
|
3797
|
+
"maxLength": 255
|
|
3798
|
+
}
|
|
2227
3799
|
}
|
|
2228
3800
|
],
|
|
2229
3801
|
"method": "post",
|
|
@@ -2232,21 +3804,29 @@ export const operations = {
|
|
|
2232
3804
|
"pathParams": [
|
|
2233
3805
|
{
|
|
2234
3806
|
"name": "public_id",
|
|
2235
|
-
"required": true
|
|
3807
|
+
"required": true,
|
|
3808
|
+
"schema": {
|
|
3809
|
+
"type": "string"
|
|
3810
|
+
}
|
|
2236
3811
|
}
|
|
2237
3812
|
],
|
|
2238
3813
|
"queryParams": [],
|
|
3814
|
+
"responseKind": "json",
|
|
2239
3815
|
"requestBodyRequired": false,
|
|
2240
3816
|
"requiredKeyKind": "root",
|
|
2241
3817
|
"surface": "management"
|
|
2242
3818
|
},
|
|
2243
3819
|
managementSetDomainFilters: {
|
|
3820
|
+
"bodyKind": "json",
|
|
2244
3821
|
"command": "management:set-domain-filters",
|
|
2245
3822
|
"description": "Replace domain-wide sender filters",
|
|
2246
3823
|
"headerParams": [
|
|
2247
3824
|
{
|
|
2248
3825
|
"name": "If-Match",
|
|
2249
|
-
"required": false
|
|
3826
|
+
"required": false,
|
|
3827
|
+
"schema": {
|
|
3828
|
+
"type": "string"
|
|
3829
|
+
}
|
|
2250
3830
|
}
|
|
2251
3831
|
],
|
|
2252
3832
|
"method": "put",
|
|
@@ -2255,21 +3835,29 @@ export const operations = {
|
|
|
2255
3835
|
"pathParams": [
|
|
2256
3836
|
{
|
|
2257
3837
|
"name": "public_id",
|
|
2258
|
-
"required": true
|
|
3838
|
+
"required": true,
|
|
3839
|
+
"schema": {
|
|
3840
|
+
"type": "string"
|
|
3841
|
+
}
|
|
2259
3842
|
}
|
|
2260
3843
|
],
|
|
2261
3844
|
"queryParams": [],
|
|
3845
|
+
"responseKind": "json",
|
|
2262
3846
|
"requestBodyRequired": false,
|
|
2263
3847
|
"requiredKeyKind": "root",
|
|
2264
3848
|
"surface": "management"
|
|
2265
3849
|
},
|
|
2266
3850
|
managementSetMailboxFilters: {
|
|
3851
|
+
"bodyKind": "json",
|
|
2267
3852
|
"command": "management:set-mailbox-filters",
|
|
2268
3853
|
"description": "Replace mailbox sender filters",
|
|
2269
3854
|
"headerParams": [
|
|
2270
3855
|
{
|
|
2271
3856
|
"name": "If-Match",
|
|
2272
|
-
"required": false
|
|
3857
|
+
"required": false,
|
|
3858
|
+
"schema": {
|
|
3859
|
+
"type": "string"
|
|
3860
|
+
}
|
|
2273
3861
|
}
|
|
2274
3862
|
],
|
|
2275
3863
|
"method": "put",
|
|
@@ -2278,21 +3866,30 @@ export const operations = {
|
|
|
2278
3866
|
"pathParams": [
|
|
2279
3867
|
{
|
|
2280
3868
|
"name": "public_id",
|
|
2281
|
-
"required": true
|
|
3869
|
+
"required": true,
|
|
3870
|
+
"schema": {
|
|
3871
|
+
"type": "string"
|
|
3872
|
+
}
|
|
2282
3873
|
}
|
|
2283
3874
|
],
|
|
2284
3875
|
"queryParams": [],
|
|
3876
|
+
"responseKind": "json",
|
|
2285
3877
|
"requestBodyRequired": false,
|
|
2286
3878
|
"requiredKeyKind": "root",
|
|
2287
3879
|
"surface": "management"
|
|
2288
3880
|
},
|
|
2289
3881
|
managementSuspendMailbox: {
|
|
3882
|
+
"bodyKind": "none",
|
|
2290
3883
|
"command": "management:suspend-mailbox",
|
|
2291
3884
|
"description": "Suspend a mailbox",
|
|
2292
3885
|
"headerParams": [
|
|
2293
3886
|
{
|
|
2294
3887
|
"name": "Idempotency-Key",
|
|
2295
|
-
"required": false
|
|
3888
|
+
"required": false,
|
|
3889
|
+
"schema": {
|
|
3890
|
+
"type": "string",
|
|
3891
|
+
"maxLength": 255
|
|
3892
|
+
}
|
|
2296
3893
|
}
|
|
2297
3894
|
],
|
|
2298
3895
|
"method": "post",
|
|
@@ -2301,21 +3898,30 @@ export const operations = {
|
|
|
2301
3898
|
"pathParams": [
|
|
2302
3899
|
{
|
|
2303
3900
|
"name": "public_id",
|
|
2304
|
-
"required": true
|
|
3901
|
+
"required": true,
|
|
3902
|
+
"schema": {
|
|
3903
|
+
"type": "string"
|
|
3904
|
+
}
|
|
2305
3905
|
}
|
|
2306
3906
|
],
|
|
2307
3907
|
"queryParams": [],
|
|
3908
|
+
"responseKind": "json",
|
|
2308
3909
|
"requestBodyRequired": false,
|
|
2309
3910
|
"requiredKeyKind": "root",
|
|
2310
3911
|
"surface": "management"
|
|
2311
3912
|
},
|
|
2312
3913
|
managementTestProvider: {
|
|
3914
|
+
"bodyKind": "none",
|
|
2313
3915
|
"command": "management:test-provider",
|
|
2314
3916
|
"description": "Test an SMTP sending account",
|
|
2315
3917
|
"headerParams": [
|
|
2316
3918
|
{
|
|
2317
3919
|
"name": "Idempotency-Key",
|
|
2318
|
-
"required": false
|
|
3920
|
+
"required": false,
|
|
3921
|
+
"schema": {
|
|
3922
|
+
"type": "string",
|
|
3923
|
+
"maxLength": 255
|
|
3924
|
+
}
|
|
2319
3925
|
}
|
|
2320
3926
|
],
|
|
2321
3927
|
"method": "post",
|
|
@@ -2324,21 +3930,30 @@ export const operations = {
|
|
|
2324
3930
|
"pathParams": [
|
|
2325
3931
|
{
|
|
2326
3932
|
"name": "public_id",
|
|
2327
|
-
"required": true
|
|
3933
|
+
"required": true,
|
|
3934
|
+
"schema": {
|
|
3935
|
+
"type": "string"
|
|
3936
|
+
}
|
|
2328
3937
|
}
|
|
2329
3938
|
],
|
|
2330
3939
|
"queryParams": [],
|
|
3940
|
+
"responseKind": "json",
|
|
2331
3941
|
"requestBodyRequired": false,
|
|
2332
3942
|
"requiredKeyKind": "root",
|
|
2333
3943
|
"surface": "management"
|
|
2334
3944
|
},
|
|
2335
3945
|
managementTestWebhook: {
|
|
3946
|
+
"bodyKind": "none",
|
|
2336
3947
|
"command": "management:test-webhook",
|
|
2337
3948
|
"description": "Send a synthetic test event",
|
|
2338
3949
|
"headerParams": [
|
|
2339
3950
|
{
|
|
2340
3951
|
"name": "Idempotency-Key",
|
|
2341
|
-
"required": false
|
|
3952
|
+
"required": false,
|
|
3953
|
+
"schema": {
|
|
3954
|
+
"type": "string",
|
|
3955
|
+
"maxLength": 255
|
|
3956
|
+
}
|
|
2342
3957
|
}
|
|
2343
3958
|
],
|
|
2344
3959
|
"method": "post",
|
|
@@ -2347,21 +3962,60 @@ export const operations = {
|
|
|
2347
3962
|
"pathParams": [
|
|
2348
3963
|
{
|
|
2349
3964
|
"name": "public_id",
|
|
2350
|
-
"required": true
|
|
3965
|
+
"required": true,
|
|
3966
|
+
"schema": {
|
|
3967
|
+
"type": "string"
|
|
3968
|
+
}
|
|
2351
3969
|
}
|
|
2352
3970
|
],
|
|
2353
3971
|
"queryParams": [],
|
|
3972
|
+
"responseKind": "json",
|
|
3973
|
+
"requestBodyRequired": false,
|
|
3974
|
+
"requiredKeyKind": "root",
|
|
3975
|
+
"surface": "management"
|
|
3976
|
+
},
|
|
3977
|
+
managementUpdateDomain: {
|
|
3978
|
+
"bodyKind": "json",
|
|
3979
|
+
"command": "management:update-domain",
|
|
3980
|
+
"description": "Update a mailbox domain",
|
|
3981
|
+
"headerParams": [
|
|
3982
|
+
{
|
|
3983
|
+
"name": "If-Match",
|
|
3984
|
+
"required": false,
|
|
3985
|
+
"schema": {
|
|
3986
|
+
"type": "string"
|
|
3987
|
+
}
|
|
3988
|
+
}
|
|
3989
|
+
],
|
|
3990
|
+
"method": "patch",
|
|
3991
|
+
"operationId": "managementUpdateDomain",
|
|
3992
|
+
"path": "/domains/{public_id}",
|
|
3993
|
+
"pathParams": [
|
|
3994
|
+
{
|
|
3995
|
+
"name": "public_id",
|
|
3996
|
+
"required": true,
|
|
3997
|
+
"schema": {
|
|
3998
|
+
"type": "string"
|
|
3999
|
+
}
|
|
4000
|
+
}
|
|
4001
|
+
],
|
|
4002
|
+
"queryParams": [],
|
|
4003
|
+
"responseKind": "json",
|
|
2354
4004
|
"requestBodyRequired": false,
|
|
2355
4005
|
"requiredKeyKind": "root",
|
|
2356
4006
|
"surface": "management"
|
|
2357
4007
|
},
|
|
2358
4008
|
managementUpdateMailbox: {
|
|
4009
|
+
"bodyKind": "json",
|
|
2359
4010
|
"command": "management:update-mailbox",
|
|
2360
4011
|
"description": "Update a mailbox",
|
|
2361
4012
|
"headerParams": [
|
|
2362
4013
|
{
|
|
2363
4014
|
"name": "If-Match",
|
|
2364
|
-
"required": false
|
|
4015
|
+
"required": false,
|
|
4016
|
+
"schema": {
|
|
4017
|
+
"type": "string"
|
|
4018
|
+
}
|
|
2365
4019
|
}
|
|
2366
4020
|
],
|
|
2367
4021
|
"method": "patch",
|
|
@@ -2370,21 +4024,29 @@ export const operations = {
|
|
|
2370
4024
|
"pathParams": [
|
|
2371
4025
|
{
|
|
2372
4026
|
"name": "public_id",
|
|
2373
|
-
"required": true
|
|
4027
|
+
"required": true,
|
|
4028
|
+
"schema": {
|
|
4029
|
+
"type": "string"
|
|
4030
|
+
}
|
|
2374
4031
|
}
|
|
2375
4032
|
],
|
|
2376
4033
|
"queryParams": [],
|
|
4034
|
+
"responseKind": "json",
|
|
2377
4035
|
"requestBodyRequired": false,
|
|
2378
4036
|
"requiredKeyKind": "root",
|
|
2379
4037
|
"surface": "management"
|
|
2380
4038
|
},
|
|
2381
4039
|
managementUpdateProvider: {
|
|
4040
|
+
"bodyKind": "json",
|
|
2382
4041
|
"command": "management:update-provider",
|
|
2383
4042
|
"description": "Update a sending account",
|
|
2384
4043
|
"headerParams": [
|
|
2385
4044
|
{
|
|
2386
4045
|
"name": "If-Match",
|
|
2387
|
-
"required": false
|
|
4046
|
+
"required": false,
|
|
4047
|
+
"schema": {
|
|
4048
|
+
"type": "string"
|
|
4049
|
+
}
|
|
2388
4050
|
}
|
|
2389
4051
|
],
|
|
2390
4052
|
"method": "patch",
|
|
@@ -2393,21 +4055,29 @@ export const operations = {
|
|
|
2393
4055
|
"pathParams": [
|
|
2394
4056
|
{
|
|
2395
4057
|
"name": "public_id",
|
|
2396
|
-
"required": true
|
|
4058
|
+
"required": true,
|
|
4059
|
+
"schema": {
|
|
4060
|
+
"type": "string"
|
|
4061
|
+
}
|
|
2397
4062
|
}
|
|
2398
4063
|
],
|
|
2399
4064
|
"queryParams": [],
|
|
4065
|
+
"responseKind": "json",
|
|
2400
4066
|
"requestBodyRequired": false,
|
|
2401
4067
|
"requiredKeyKind": "root",
|
|
2402
4068
|
"surface": "management"
|
|
2403
4069
|
},
|
|
2404
4070
|
managementUpdateWebhook: {
|
|
4071
|
+
"bodyKind": "json",
|
|
2405
4072
|
"command": "management:update-webhook",
|
|
2406
4073
|
"description": "Update a webhook subscription",
|
|
2407
4074
|
"headerParams": [
|
|
2408
4075
|
{
|
|
2409
4076
|
"name": "If-Match",
|
|
2410
|
-
"required": false
|
|
4077
|
+
"required": false,
|
|
4078
|
+
"schema": {
|
|
4079
|
+
"type": "string"
|
|
4080
|
+
}
|
|
2411
4081
|
}
|
|
2412
4082
|
],
|
|
2413
4083
|
"method": "patch",
|
|
@@ -2416,15 +4086,20 @@ export const operations = {
|
|
|
2416
4086
|
"pathParams": [
|
|
2417
4087
|
{
|
|
2418
4088
|
"name": "public_id",
|
|
2419
|
-
"required": true
|
|
4089
|
+
"required": true,
|
|
4090
|
+
"schema": {
|
|
4091
|
+
"type": "string"
|
|
4092
|
+
}
|
|
2420
4093
|
}
|
|
2421
4094
|
],
|
|
2422
4095
|
"queryParams": [],
|
|
4096
|
+
"responseKind": "json",
|
|
2423
4097
|
"requestBodyRequired": false,
|
|
2424
4098
|
"requiredKeyKind": "root",
|
|
2425
4099
|
"surface": "management"
|
|
2426
4100
|
},
|
|
2427
4101
|
managementVerifyDomain: {
|
|
4102
|
+
"bodyKind": "none",
|
|
2428
4103
|
"command": "management:verify-domain",
|
|
2429
4104
|
"description": "Verify a mailbox domain",
|
|
2430
4105
|
"headerParams": [],
|
|
@@ -2434,21 +4109,29 @@ export const operations = {
|
|
|
2434
4109
|
"pathParams": [
|
|
2435
4110
|
{
|
|
2436
4111
|
"name": "public_id",
|
|
2437
|
-
"required": true
|
|
4112
|
+
"required": true,
|
|
4113
|
+
"schema": {
|
|
4114
|
+
"type": "string"
|
|
4115
|
+
}
|
|
2438
4116
|
}
|
|
2439
4117
|
],
|
|
2440
4118
|
"queryParams": [],
|
|
4119
|
+
"responseKind": "json",
|
|
2441
4120
|
"requestBodyRequired": false,
|
|
2442
4121
|
"requiredKeyKind": "root",
|
|
2443
4122
|
"surface": "management"
|
|
2444
4123
|
},
|
|
2445
4124
|
sendingGetOpenApiSpec: {
|
|
4125
|
+
"bodyKind": "none",
|
|
2446
4126
|
"command": "sending:get-open-api-spec",
|
|
2447
4127
|
"description": "OpenAPI 3.1 specification",
|
|
2448
4128
|
"headerParams": [
|
|
2449
4129
|
{
|
|
2450
4130
|
"name": "If-None-Match",
|
|
2451
|
-
"required": false
|
|
4131
|
+
"required": false,
|
|
4132
|
+
"schema": {
|
|
4133
|
+
"type": "string"
|
|
4134
|
+
}
|
|
2452
4135
|
}
|
|
2453
4136
|
],
|
|
2454
4137
|
"method": "get",
|
|
@@ -2456,17 +4139,23 @@ export const operations = {
|
|
|
2456
4139
|
"path": "/openapi.json",
|
|
2457
4140
|
"pathParams": [],
|
|
2458
4141
|
"queryParams": [],
|
|
4142
|
+
"responseKind": "json",
|
|
2459
4143
|
"requestBodyRequired": false,
|
|
2460
|
-
"requiredKeyKind": "
|
|
4144
|
+
"requiredKeyKind": "mailbox",
|
|
2461
4145
|
"surface": "sending"
|
|
2462
4146
|
},
|
|
2463
4147
|
sendingSendEmail: {
|
|
4148
|
+
"bodyKind": "json",
|
|
2464
4149
|
"command": "sending:send",
|
|
2465
4150
|
"description": "Send a single email",
|
|
2466
4151
|
"headerParams": [
|
|
2467
4152
|
{
|
|
2468
4153
|
"name": "Idempotency-Key",
|
|
2469
|
-
"required": false
|
|
4154
|
+
"required": false,
|
|
4155
|
+
"schema": {
|
|
4156
|
+
"type": "string",
|
|
4157
|
+
"maxLength": 255
|
|
4158
|
+
}
|
|
2470
4159
|
}
|
|
2471
4160
|
],
|
|
2472
4161
|
"method": "post",
|
|
@@ -2474,17 +4163,23 @@ export const operations = {
|
|
|
2474
4163
|
"path": "/emails/send",
|
|
2475
4164
|
"pathParams": [],
|
|
2476
4165
|
"queryParams": [],
|
|
4166
|
+
"responseKind": "json",
|
|
2477
4167
|
"requestBodyRequired": true,
|
|
2478
|
-
"requiredKeyKind": "
|
|
4168
|
+
"requiredKeyKind": "mailbox",
|
|
2479
4169
|
"surface": "sending"
|
|
2480
4170
|
},
|
|
2481
4171
|
sendingSendEmailBatch: {
|
|
4172
|
+
"bodyKind": "json",
|
|
2482
4173
|
"command": "sending:send:batch",
|
|
2483
4174
|
"description": "Send a batch of emails",
|
|
2484
4175
|
"headerParams": [
|
|
2485
4176
|
{
|
|
2486
4177
|
"name": "Idempotency-Key",
|
|
2487
|
-
"required": false
|
|
4178
|
+
"required": false,
|
|
4179
|
+
"schema": {
|
|
4180
|
+
"type": "string",
|
|
4181
|
+
"maxLength": 255
|
|
4182
|
+
}
|
|
2488
4183
|
}
|
|
2489
4184
|
],
|
|
2490
4185
|
"method": "post",
|
|
@@ -2492,8 +4187,9 @@ export const operations = {
|
|
|
2492
4187
|
"path": "/emails/send/batch",
|
|
2493
4188
|
"pathParams": [],
|
|
2494
4189
|
"queryParams": [],
|
|
4190
|
+
"responseKind": "json",
|
|
2495
4191
|
"requestBodyRequired": true,
|
|
2496
|
-
"requiredKeyKind": "
|
|
4192
|
+
"requiredKeyKind": "mailbox",
|
|
2497
4193
|
"surface": "sending"
|
|
2498
4194
|
},
|
|
2499
4195
|
};
|