@botpress/api 0.18.4 → 0.18.5

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/dist/index.js CHANGED
@@ -274088,6 +274088,57 @@ var state = {
274088
274088
  "description": "Subscriptions of the bot",
274089
274089
  "additionalProperties": false
274090
274090
  },
274091
+ "actions": {
274092
+ "type": "object",
274093
+ "additionalProperties": {
274094
+ "type": "object",
274095
+ "properties": {
274096
+ "title": {
274097
+ "type": "string",
274098
+ "maxLength": 64,
274099
+ "description": "Title of the action"
274100
+ },
274101
+ "description": {
274102
+ "type": "string",
274103
+ "maxLength": 256,
274104
+ "description": "Description of the action"
274105
+ },
274106
+ "input": {
274107
+ "type": "object",
274108
+ "properties": {
274109
+ "schema": {
274110
+ "type": "object",
274111
+ "additionalProperties": true
274112
+ }
274113
+ },
274114
+ "required": [
274115
+ "schema"
274116
+ ],
274117
+ "additionalProperties": false
274118
+ },
274119
+ "output": {
274120
+ "type": "object",
274121
+ "properties": {
274122
+ "schema": {
274123
+ "type": "object",
274124
+ "additionalProperties": true
274125
+ }
274126
+ },
274127
+ "required": [
274128
+ "schema"
274129
+ ],
274130
+ "additionalProperties": false
274131
+ }
274132
+ },
274133
+ "required": [
274134
+ "input",
274135
+ "output"
274136
+ ],
274137
+ "description": "Action definition",
274138
+ "additionalProperties": false
274139
+ },
274140
+ "description": "Actions definition"
274141
+ },
274091
274142
  "configuration": {
274092
274143
  "type": "object",
274093
274144
  "properties": {
@@ -274402,6 +274453,57 @@ var state = {
274402
274453
  "additionalProperties": false
274403
274454
  }
274404
274455
  },
274456
+ "actions": {
274457
+ "type": "object",
274458
+ "additionalProperties": {
274459
+ "type": "object",
274460
+ "properties": {
274461
+ "title": {
274462
+ "type": "string",
274463
+ "maxLength": 64,
274464
+ "description": "Title of the action"
274465
+ },
274466
+ "description": {
274467
+ "type": "string",
274468
+ "maxLength": 256,
274469
+ "description": "Description of the action"
274470
+ },
274471
+ "input": {
274472
+ "type": "object",
274473
+ "properties": {
274474
+ "schema": {
274475
+ "type": "object",
274476
+ "additionalProperties": true
274477
+ }
274478
+ },
274479
+ "required": [
274480
+ "schema"
274481
+ ],
274482
+ "additionalProperties": false
274483
+ },
274484
+ "output": {
274485
+ "type": "object",
274486
+ "properties": {
274487
+ "schema": {
274488
+ "type": "object",
274489
+ "additionalProperties": true
274490
+ }
274491
+ },
274492
+ "required": [
274493
+ "schema"
274494
+ ],
274495
+ "additionalProperties": false
274496
+ }
274497
+ },
274498
+ "required": [
274499
+ "input",
274500
+ "output"
274501
+ ],
274502
+ "description": "Action definition",
274503
+ "nullable": true,
274504
+ "additionalProperties": false
274505
+ }
274506
+ },
274405
274507
  "states": {
274406
274508
  "type": "object",
274407
274509
  "additionalProperties": {
@@ -275458,6 +275560,45 @@ var state = {
275458
275560
  }
275459
275561
  }
275460
275562
  },
275563
+ "getUpcomingInvoice": {
275564
+ "name": "getUpcomingInvoice",
275565
+ "description": "Get upcoming invoice for workspace",
275566
+ "method": "get",
275567
+ "path": "/v1/admin/workspaces/{id}/billing/upcoming-invoice",
275568
+ "disableDefaultParameters": {
275569
+ "x-workspace-id": true
275570
+ },
275571
+ "parameters": {
275572
+ "id": {
275573
+ "type": "string",
275574
+ "description": "Workspace ID",
275575
+ "in": "path"
275576
+ }
275577
+ },
275578
+ "section": "workspace",
275579
+ "response": {
275580
+ "description": "Success",
275581
+ "schema": {
275582
+ "type": "object",
275583
+ "properties": {
275584
+ "id": {
275585
+ "type": "string",
275586
+ "description": "ID of the invoice."
275587
+ },
275588
+ "total": {
275589
+ "type": "number",
275590
+ "description": "Total amount to pay of the invoice."
275591
+ }
275592
+ },
275593
+ "required": [
275594
+ "id",
275595
+ "total"
275596
+ ],
275597
+ "title": "getUpcomingInvoiceResponse",
275598
+ "additionalProperties": false
275599
+ }
275600
+ }
275601
+ },
275461
275602
  "chargeWorkspaceUnpaidInvoices": {
275462
275603
  "name": "chargeWorkspaceUnpaidInvoices",
275463
275604
  "description": "Charge unpaid invoices of a workspace.",
@@ -279355,7 +279496,7 @@ var state = {
279355
279496
  "title": "Botpress API",
279356
279497
  "description": "API for Botpress Cloud",
279357
279498
  "server": "https://api.botpress.cloud",
279358
- "version": "0.18.4",
279499
+ "version": "0.18.5",
279359
279500
  "prefix": "v1"
279360
279501
  },
279361
279502
  "errors": [
@@ -279583,6 +279724,7 @@ var state = {
279583
279724
  "getWorkspaceBillingDetailsResponse": true,
279584
279725
  "setWorkspacePaymentMethodResponse": true,
279585
279726
  "listWorkspaceInvoicesResponse": true,
279727
+ "getUpcomingInvoiceResponse": true,
279586
279728
  "chargeWorkspaceUnpaidInvoicesResponse": true,
279587
279729
  "createWorkspaceResponse": true,
279588
279730
  "getPublicWorkspaceResponse": true,
@@ -280031,6 +280173,57 @@ var state = {
280031
280173
  "description": "Subscriptions of the bot",
280032
280174
  "additionalProperties": false
280033
280175
  },
280176
+ "actions": {
280177
+ "type": "object",
280178
+ "additionalProperties": {
280179
+ "type": "object",
280180
+ "properties": {
280181
+ "title": {
280182
+ "type": "string",
280183
+ "maxLength": 64,
280184
+ "description": "Title of the action"
280185
+ },
280186
+ "description": {
280187
+ "type": "string",
280188
+ "maxLength": 256,
280189
+ "description": "Description of the action"
280190
+ },
280191
+ "input": {
280192
+ "type": "object",
280193
+ "properties": {
280194
+ "schema": {
280195
+ "type": "object",
280196
+ "additionalProperties": true
280197
+ }
280198
+ },
280199
+ "required": [
280200
+ "schema"
280201
+ ],
280202
+ "additionalProperties": false
280203
+ },
280204
+ "output": {
280205
+ "type": "object",
280206
+ "properties": {
280207
+ "schema": {
280208
+ "type": "object",
280209
+ "additionalProperties": true
280210
+ }
280211
+ },
280212
+ "required": [
280213
+ "schema"
280214
+ ],
280215
+ "additionalProperties": false
280216
+ }
280217
+ },
280218
+ "required": [
280219
+ "input",
280220
+ "output"
280221
+ ],
280222
+ "description": "Action definition",
280223
+ "additionalProperties": false
280224
+ },
280225
+ "description": "Actions definition"
280226
+ },
280034
280227
  "name": {
280035
280228
  "type": "string",
280036
280229
  "description": "Name of the [Bot](#schema_bot)"
@@ -280096,6 +280289,7 @@ var state = {
280096
280289
  "events",
280097
280290
  "recurringEvents",
280098
280291
  "subscriptions",
280292
+ "actions",
280099
280293
  "name",
280100
280294
  "dev",
280101
280295
  "alwaysAlive",
@@ -281789,6 +281983,7 @@ var state = {
281789
281983
  "getWorkspaceBillingDetails",
281790
281984
  "setWorkspacePaymentMethod",
281791
281985
  "listWorkspaceInvoices",
281986
+ "getUpcomingInvoice",
281792
281987
  "chargeWorkspaceUnpaidInvoices",
281793
281988
  "createWorkspace",
281794
281989
  "getPublicWorkspace",
@@ -2365,6 +2365,50 @@ export declare const state: {
2365
2365
  description: string;
2366
2366
  additionalProperties: false;
2367
2367
  };
2368
+ actions: {
2369
+ type: "object";
2370
+ additionalProperties: {
2371
+ type: "object";
2372
+ properties: {
2373
+ title: {
2374
+ type: "string";
2375
+ maxLength: number;
2376
+ description: string;
2377
+ };
2378
+ description: {
2379
+ type: "string";
2380
+ maxLength: number;
2381
+ description: string;
2382
+ };
2383
+ input: {
2384
+ type: "object";
2385
+ properties: {
2386
+ schema: {
2387
+ type: "object";
2388
+ additionalProperties: true;
2389
+ };
2390
+ };
2391
+ required: string[];
2392
+ additionalProperties: false;
2393
+ };
2394
+ output: {
2395
+ type: "object";
2396
+ properties: {
2397
+ schema: {
2398
+ type: "object";
2399
+ additionalProperties: true;
2400
+ };
2401
+ };
2402
+ required: string[];
2403
+ additionalProperties: false;
2404
+ };
2405
+ };
2406
+ required: string[];
2407
+ description: string;
2408
+ additionalProperties: false;
2409
+ };
2410
+ description: string;
2411
+ };
2368
2412
  configuration: {
2369
2413
  type: "object";
2370
2414
  properties: {
@@ -2670,6 +2714,50 @@ export declare const state: {
2670
2714
  additionalProperties: false;
2671
2715
  };
2672
2716
  };
2717
+ actions: {
2718
+ type: "object";
2719
+ additionalProperties: {
2720
+ type: "object";
2721
+ properties: {
2722
+ title: {
2723
+ type: "string";
2724
+ maxLength: number;
2725
+ description: string;
2726
+ };
2727
+ description: {
2728
+ type: "string";
2729
+ maxLength: number;
2730
+ description: string;
2731
+ };
2732
+ input: {
2733
+ type: "object";
2734
+ properties: {
2735
+ schema: {
2736
+ type: "object";
2737
+ additionalProperties: true;
2738
+ };
2739
+ };
2740
+ required: string[];
2741
+ additionalProperties: false;
2742
+ };
2743
+ output: {
2744
+ type: "object";
2745
+ properties: {
2746
+ schema: {
2747
+ type: "object";
2748
+ additionalProperties: true;
2749
+ };
2750
+ };
2751
+ required: string[];
2752
+ additionalProperties: false;
2753
+ };
2754
+ };
2755
+ required: string[];
2756
+ description: string;
2757
+ nullable: true;
2758
+ additionalProperties: false;
2759
+ };
2760
+ };
2673
2761
  states: {
2674
2762
  type: "object";
2675
2763
  additionalProperties: {
@@ -3580,6 +3668,42 @@ export declare const state: {
3580
3668
  };
3581
3669
  };
3582
3670
  };
3671
+ getUpcomingInvoice: {
3672
+ name: string;
3673
+ description: string;
3674
+ method: "get";
3675
+ path: string;
3676
+ disableDefaultParameters: {
3677
+ "x-workspace-id": boolean;
3678
+ };
3679
+ parameters: {
3680
+ id: {
3681
+ type: "string";
3682
+ description: string;
3683
+ in: "path";
3684
+ };
3685
+ };
3686
+ section: "workspace";
3687
+ response: {
3688
+ description: string;
3689
+ schema: {
3690
+ type: "object";
3691
+ properties: {
3692
+ id: {
3693
+ type: "string";
3694
+ description: string;
3695
+ };
3696
+ total: {
3697
+ type: "number";
3698
+ description: string;
3699
+ };
3700
+ };
3701
+ required: string[];
3702
+ title: string;
3703
+ additionalProperties: false;
3704
+ };
3705
+ };
3706
+ };
3583
3707
  chargeWorkspaceUnpaidInvoices: {
3584
3708
  name: string;
3585
3709
  description: string;
@@ -7120,6 +7244,7 @@ export declare const state: {
7120
7244
  getWorkspaceBillingDetailsResponse: true;
7121
7245
  setWorkspacePaymentMethodResponse: true;
7122
7246
  listWorkspaceInvoicesResponse: true;
7247
+ getUpcomingInvoiceResponse: true;
7123
7248
  chargeWorkspaceUnpaidInvoicesResponse: true;
7124
7249
  createWorkspaceResponse: true;
7125
7250
  getPublicWorkspaceResponse: true;
@@ -7517,6 +7642,50 @@ export declare const state: {
7517
7642
  description: string;
7518
7643
  additionalProperties: false;
7519
7644
  };
7645
+ actions: {
7646
+ type: "object";
7647
+ additionalProperties: {
7648
+ type: "object";
7649
+ properties: {
7650
+ title: {
7651
+ type: "string";
7652
+ maxLength: number;
7653
+ description: string;
7654
+ };
7655
+ description: {
7656
+ type: "string";
7657
+ maxLength: number;
7658
+ description: string;
7659
+ };
7660
+ input: {
7661
+ type: "object";
7662
+ properties: {
7663
+ schema: {
7664
+ type: "object";
7665
+ additionalProperties: true;
7666
+ };
7667
+ };
7668
+ required: string[];
7669
+ additionalProperties: false;
7670
+ };
7671
+ output: {
7672
+ type: "object";
7673
+ properties: {
7674
+ schema: {
7675
+ type: "object";
7676
+ additionalProperties: true;
7677
+ };
7678
+ };
7679
+ required: string[];
7680
+ additionalProperties: false;
7681
+ };
7682
+ };
7683
+ required: string[];
7684
+ description: string;
7685
+ additionalProperties: false;
7686
+ };
7687
+ description: string;
7688
+ };
7520
7689
  name: {
7521
7690
  type: "string";
7522
7691
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.18.4",
3
+ "version": "0.18.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -1 +1 @@
1
- {"sections":[{"description":"","title":"User","name":"user","operations":["createUser","getUser","listUsers","getOrCreateUser","updateUser","deleteUser"],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":["createConversation","getConversation","listConversations","getOrCreateConversation","updateConversation","deleteConversation","listParticipants","addParticipant","getParticipant","removeParticipant"],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":["createEvent","getEvent","listEvents"],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":["createMessage","getOrCreateMessage","getMessage","updateMessage","listMessages","deleteMessage"],"schema":"Message"},{"description":"","title":"File","name":"file","operations":["createFile","getFile","downloadFile","deleteFile","listFiles"],"schema":"File"},{"description":"","title":"State","name":"state","operations":["getState","setState","getOrSetState","patchState"],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration"]},{"description":"","title":"Action","name":"action","operations":["callAction"]},{"description":"","title":"Task","name":"task","operations":["getTask","createTask","updateTask","deleteTask","listTasks"],"schema":"Task"},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","listBotIssues","deleteBotIssue","listBotIssueEvents"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["createIntegration","updateIntegration","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration"],"schema":"Integration"},{"title":"Workspace","description":"","name":"workspace","operations":["getWorkspaceBillingDetails","setWorkspacePaymentMethod","listWorkspaceInvoices","chargeWorkspaceUnpaidInvoices","createWorkspace","getPublicWorkspace","getWorkspace","listWorkspaceUsages","breakDownWorkspaceUsageByBot","getAllWorkspaceQuotaCompletion","getWorkspaceQuota","listWorkspaceQuotas","updateWorkspace","checkHandleAvailability","listWorkspaces","changeWorkspacePlan","deleteWorkspace","getAuditRecords"],"schema":"Workspace"},{"title":"Workspace Member","description":"","name":"workspaceMember","operations":["listWorkspaceMembers","deleteWorkspaceMember","createWorkspaceMember","updateWorkspaceMember"],"schema":"WorkspaceMember"},{"title":"Account","description":"","name":"account","operations":["getAccount","updateAccount","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage"],"schema":"Usage"},{"title":"Quotas","description":"","name":"quotas","operations":["changeAISpendQuota"]},{"title":"Helper","description":"","name":"helper","operations":["runVrl"]},{"title":"Activity","description":"","name":"activity","operations":["listActivities"],"schema":"Activity"},{"title":"Tables","description":"Manage and interact with table structures, including creation, updates, and querying of tables and their rows.","name":"tables","operations":["listTables","getTable","createTable","updateTable","renameTableColumn","deleteTable","getTableRow","findTableRows","createTableRows","deleteTableRows","updateTableRows","upsertTableRows"],"schema":"Table"}],"errors":[{"status":500,"type":"Unknown","description":"An unknown error occurred"},{"status":500,"type":"Internal","description":"An internal error occurred"},{"status":401,"type":"Unauthorized","description":"The request requires to be authenticated."},{"status":403,"type":"Forbidden","description":"The requested action can't be peform by this resource."},{"status":413,"type":"PayloadTooLarge","description":"The request payload is too large."},{"status":400,"type":"InvalidPayload","description":"The request payload is invalid."},{"status":415,"type":"UnsupportedMediaType","description":"The request is invalid because the content-type is not supported."},{"status":405,"type":"MethodNotFound","description":"The requested method does not exist."},{"status":404,"type":"ResourceNotFound","description":"The requested resource does not exist."},{"status":400,"type":"InvalidJsonSchema","description":"The provided JSON schema is invalid."},{"status":400,"type":"InvalidDataFormat","description":"The provided data doesn't respect the provided JSON schema."},{"status":400,"type":"InvalidIdentifier","description":"The provided identifier is not valid. An identifier must start with a lowercase letter, be between 2 and 100 characters long and use only alphanumeric characters."},{"status":409,"type":"RelationConflict","description":"The resource is related with a different resource that the one referenced in the request. This is usually caused when providing two resource identifiers that aren't linked together."},{"status":409,"type":"ReferenceConstraint","description":"The resource cannot be deleted because it's referenced by another resource"},{"status":400,"type":"ReferenceNotFound","description":"The provided resource reference is missing. This is usually caused when providing an invalid id inside the payload of a request."},{"status":400,"type":"InvalidQuery","description":"The provided query is invalid. This is usually caused when providing an invalid parameter for querying a resource."},{"status":400,"type":"Runtime","description":"An error happened during the execution of a runtime (bot or integration)."},{"status":409,"type":"AlreadyExists","description":"The record attempted to be created already exists."},{"status":429,"type":"RateLimited","description":"The request has been rate limited."},{"status":402,"type":"PaymentRequired","description":"A payment is required to perform this request."},{"status":403,"type":"QuotaExceeded","description":"The request exceeds the allowed quota. Quotas are a soft limit that can be increased."},{"status":413,"type":"LimitExceeded","description":"The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."}]}
1
+ {"sections":[{"description":"","title":"User","name":"user","operations":["createUser","getUser","listUsers","getOrCreateUser","updateUser","deleteUser"],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":["createConversation","getConversation","listConversations","getOrCreateConversation","updateConversation","deleteConversation","listParticipants","addParticipant","getParticipant","removeParticipant"],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":["createEvent","getEvent","listEvents"],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":["createMessage","getOrCreateMessage","getMessage","updateMessage","listMessages","deleteMessage"],"schema":"Message"},{"description":"","title":"File","name":"file","operations":["createFile","getFile","downloadFile","deleteFile","listFiles"],"schema":"File"},{"description":"","title":"State","name":"state","operations":["getState","setState","getOrSetState","patchState"],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration"]},{"description":"","title":"Action","name":"action","operations":["callAction"]},{"description":"","title":"Task","name":"task","operations":["getTask","createTask","updateTask","deleteTask","listTasks"],"schema":"Task"},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","listBotIssues","deleteBotIssue","listBotIssueEvents"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["createIntegration","updateIntegration","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration"],"schema":"Integration"},{"title":"Workspace","description":"","name":"workspace","operations":["getWorkspaceBillingDetails","setWorkspacePaymentMethod","listWorkspaceInvoices","getUpcomingInvoice","chargeWorkspaceUnpaidInvoices","createWorkspace","getPublicWorkspace","getWorkspace","listWorkspaceUsages","breakDownWorkspaceUsageByBot","getAllWorkspaceQuotaCompletion","getWorkspaceQuota","listWorkspaceQuotas","updateWorkspace","checkHandleAvailability","listWorkspaces","changeWorkspacePlan","deleteWorkspace","getAuditRecords"],"schema":"Workspace"},{"title":"Workspace Member","description":"","name":"workspaceMember","operations":["listWorkspaceMembers","deleteWorkspaceMember","createWorkspaceMember","updateWorkspaceMember"],"schema":"WorkspaceMember"},{"title":"Account","description":"","name":"account","operations":["getAccount","updateAccount","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage"],"schema":"Usage"},{"title":"Quotas","description":"","name":"quotas","operations":["changeAISpendQuota"]},{"title":"Helper","description":"","name":"helper","operations":["runVrl"]},{"title":"Activity","description":"","name":"activity","operations":["listActivities"],"schema":"Activity"},{"title":"Tables","description":"Manage and interact with table structures, including creation, updates, and querying of tables and their rows.","name":"tables","operations":["listTables","getTable","createTable","updateTable","renameTableColumn","deleteTable","getTableRow","findTableRows","createTableRows","deleteTableRows","updateTableRows","upsertTableRows"],"schema":"Table"}],"errors":[{"status":500,"type":"Unknown","description":"An unknown error occurred"},{"status":500,"type":"Internal","description":"An internal error occurred"},{"status":401,"type":"Unauthorized","description":"The request requires to be authenticated."},{"status":403,"type":"Forbidden","description":"The requested action can't be peform by this resource."},{"status":413,"type":"PayloadTooLarge","description":"The request payload is too large."},{"status":400,"type":"InvalidPayload","description":"The request payload is invalid."},{"status":415,"type":"UnsupportedMediaType","description":"The request is invalid because the content-type is not supported."},{"status":405,"type":"MethodNotFound","description":"The requested method does not exist."},{"status":404,"type":"ResourceNotFound","description":"The requested resource does not exist."},{"status":400,"type":"InvalidJsonSchema","description":"The provided JSON schema is invalid."},{"status":400,"type":"InvalidDataFormat","description":"The provided data doesn't respect the provided JSON schema."},{"status":400,"type":"InvalidIdentifier","description":"The provided identifier is not valid. An identifier must start with a lowercase letter, be between 2 and 100 characters long and use only alphanumeric characters."},{"status":409,"type":"RelationConflict","description":"The resource is related with a different resource that the one referenced in the request. This is usually caused when providing two resource identifiers that aren't linked together."},{"status":409,"type":"ReferenceConstraint","description":"The resource cannot be deleted because it's referenced by another resource"},{"status":400,"type":"ReferenceNotFound","description":"The provided resource reference is missing. This is usually caused when providing an invalid id inside the payload of a request."},{"status":400,"type":"InvalidQuery","description":"The provided query is invalid. This is usually caused when providing an invalid parameter for querying a resource."},{"status":400,"type":"Runtime","description":"An error happened during the execution of a runtime (bot or integration)."},{"status":409,"type":"AlreadyExists","description":"The record attempted to be created already exists."},{"status":429,"type":"RateLimited","description":"The request has been rate limited."},{"status":402,"type":"PaymentRequired","description":"A payment is required to perform this request."},{"status":403,"type":"QuotaExceeded","description":"The request exceeds the allowed quota. Quotas are a soft limit that can be increased."},{"status":413,"type":"LimitExceeded","description":"The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."}]}