-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
3184 lines (3184 loc) · 89.9 KB
/
openapi.yaml
File metadata and controls
3184 lines (3184 loc) · 89.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: AI Agent Email Runtime API
version: 0.1.0
summary: Control plane and data plane API for an email-first AI agent runtime
servers:
- url: https://api.mailagents.net
security:
- bearerAuth: []
tags:
- name: Admin
- name: Agents
- name: Auth
- name: Debug
- name: Mailboxes
- name: MCP
- name: Tasks
- name: Messages
- name: Threads
- name: Drafts
- name: Webhooks
paths:
/mcp:
post:
tags: [MCP]
summary: MCP JSON-RPC endpoint for external agents
operationId: callMcp
description: |
Supports `initialize`, `tools/list`, and `tools/call`.
Tool availability is filtered by bearer-token scopes.
High-level mailbox tools now include `list_messages`, `send_email`, and `reply_to_message`.
Transport-level auth failures return JSON-RPC error bodies with HTTP
`401`, while tool-level authorization failures can still return `200`
with `result.isError = true`.
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/McpInitializeRequest'
- $ref: '#/components/schemas/McpToolsListRequest'
- $ref: '#/components/schemas/McpToolsCallRequest'
responses:
'200':
description: MCP response
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/McpInitializeResponse'
- $ref: '#/components/schemas/McpToolsListResponse'
- $ref: '#/components/schemas/McpToolsCallResponse'
'401':
description: Missing or invalid bearer token
content:
application/json:
schema:
$ref: '#/components/schemas/JsonRpcErrorResponse'
/admin/mcp:
post:
tags: [Admin, MCP]
summary: MCP JSON-RPC endpoint for operator and admin agents
operationId: callAdminMcp
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
description: |
Supports `initialize`, `tools/list`, and `tools/call`.
This surface is separate from `/mcp`, is gated by `ADMIN_ROUTES_ENABLED`,
and is intended for operator-only workflows such as token minting,
send-policy review, suppression management, and forensic inspection.
Transport-level auth failures return JSON-RPC error bodies with HTTP
`401`, and disabled admin routes return JSON-RPC error bodies with HTTP
`404`.
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/McpInitializeRequest'
- $ref: '#/components/schemas/McpToolsListRequest'
- $ref: '#/components/schemas/AdminMcpToolsCallRequest'
responses:
'200':
description: Admin MCP response
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/McpInitializeResponse'
- $ref: '#/components/schemas/AdminMcpToolsListResponse'
- $ref: '#/components/schemas/McpToolsCallResponse'
'401':
description: Invalid or missing admin secret
content:
application/json:
schema:
$ref: '#/components/schemas/JsonRpcErrorResponse'
'404':
description: Admin routes are disabled in the current environment
content:
application/json:
schema:
$ref: '#/components/schemas/JsonRpcErrorResponse'
/public/signup:
get:
tags: [Auth]
summary: Method not allowed for the signup API
security: []
responses:
'405':
description: Use POST with application/json
head:
tags: [Auth]
summary: Method not allowed for the signup API
security: []
responses:
'405':
description: Use POST with application/json
post:
tags: [Auth]
summary: Create a mailbox through the signup API and issue a default mailbox-scoped access token
operationId: createSignupMailbox
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PublicSignupRequest'
responses:
'201':
description: Mailbox created
content:
application/json:
schema:
$ref: '#/components/schemas/PublicSignupResult'
'400':
description: Invalid signup request
'415':
description: content-type must be application/json
'502':
description: Provisioning failed
/public/token/reissue:
post:
tags: [Auth]
summary: Reissue a signup API mailbox access token by email
operationId: publicTokenReissue
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PublicTokenReissueRequest'
responses:
'202':
description: Request accepted. If the mailbox exists, a refreshed token will be emailed to the original operator inbox.
content:
application/json:
schema:
$ref: '#/components/schemas/PublicTokenReissueAccepted'
/v1/auth/tokens:
post:
tags: [Auth]
summary: Mint a signed bearer token
operationId: createAccessToken
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [sub, tenantId, scopes]
properties:
sub:
type: string
tenantId:
type: string
agentId:
type: string
scopes:
type: array
items:
type: string
mailboxIds:
type: array
items:
type: string
expiresInSeconds:
type: integer
responses:
'201':
description: Token issued
content:
application/json:
schema:
type: object
required: [token, expiresAt]
properties:
token:
type: string
expiresAt:
type: string
format: date-time
/v1/auth/token/rotate:
post:
tags: [Auth]
summary: Rotate a still-valid bearer token
operationId: rotateAccessToken
requestBody:
required: false
content:
application/json:
schema:
$ref: '#/components/schemas/RotateAccessTokenRequest'
responses:
'201':
description: Rotated token issued
content:
application/json:
schema:
$ref: '#/components/schemas/RotateAccessTokenResult'
/v1/billing/account:
get:
tags: [Billing]
summary: Get or initialize the billing account for the current tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: getBillingAccount
responses:
'200':
description: Billing account
content:
application/json:
schema:
$ref: '#/components/schemas/BillingAccount'
/v1/billing/topup:
post:
tags: [Billing]
summary: Start an x402-compatible topup flow for the current tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: createBillingTopupIntent
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BillingTopupRequest'
responses:
'200':
description: Payment proof was accepted and, when facilitator-backed settlement is enabled, credits were settled immediately.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingPaymentConfirmResponse'
'400':
description: The submitted x402 proof is structurally invalid for the current billing route.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingInvalidPaymentProofResponse'
'402':
description: Either an x402-compatible quote before proof submission, or a facilitator failure after proof submission. Proof-submission failures include the created runtime `receiptId`.
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/BillingTopupQuoteResponse'
- $ref: '#/components/schemas/BillingPaymentFailureResponse'
'503':
description: x402 billing is not configured for this environment.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUnavailableResponse'
'202':
description: Payment proof captured. Receipt created in pending state because this environment still requires a later confirmation step.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingTopupPendingResponse'
/v1/billing/upgrade-intent:
post:
tags: [Billing]
summary: Start an x402-compatible upgrade payment flow for the current tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: createBillingUpgradeIntent
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUpgradeIntentRequest'
responses:
'200':
description: Payment proof was accepted and, when facilitator-backed settlement is enabled, the plan and send policy were updated immediately.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingPaymentConfirmResponse'
'400':
description: The submitted x402 proof is structurally invalid for the current billing route.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingInvalidPaymentProofResponse'
'402':
description: Either an x402-compatible quote before proof submission, or a facilitator failure after proof submission. Proof-submission failures include the created runtime `receiptId`.
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/BillingUpgradeQuoteResponse'
- $ref: '#/components/schemas/BillingPaymentFailureResponse'
'503':
description: x402 billing is not configured for this environment.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUnavailableResponse'
'202':
description: Payment proof captured. Receipt created in pending state because this environment still requires a later confirmation step.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUpgradePendingResponse'
/v1/billing/payment/confirm:
post:
tags: [Billing]
summary: Retry facilitator settlement for a captured payment receipt
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: confirmBillingPayment
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BillingPaymentConfirmRequest'
responses:
'200':
description: Facilitator settlement retried successfully. Credits or plan changes are applied if the receipt settles.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingPaymentConfirmResponse'
'402':
description: Facilitator verification or settlement failed.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingPaymentFailureResponse'
'410':
description: Manual payment confirmation is no longer supported on this endpoint.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUnavailableResponse'
'503':
description: x402 billing is not configured for this environment.
content:
application/json:
schema:
$ref: '#/components/schemas/BillingUnavailableResponse'
/v1/tenants/{tenantId}/send-policy:
get:
tags: [Policy]
summary: Get the send policy for a tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: getTenantSendPolicy
parameters:
- $ref: '#/components/parameters/TenantId'
responses:
'200':
description: Tenant send policy
content:
application/json:
schema:
$ref: '#/components/schemas/TenantSendPolicy'
put:
tags: [Policy]
summary: Create or update the send policy for a tenant
operationId: upsertTenantSendPolicy
parameters:
- $ref: '#/components/parameters/TenantId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpsertTenantSendPolicyRequest'
responses:
'200':
description: Tenant send policy updated
content:
application/json:
schema:
$ref: '#/components/schemas/TenantSendPolicy'
/v1/tenants/{tenantId}/send-policy/review-decision:
post:
tags: [Policy]
summary: Apply an admin review decision to a tenant send policy
operationId: reviewTenantSendPolicy
parameters:
- $ref: '#/components/parameters/TenantId'
- name: x-admin-secret
in: header
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TenantSendPolicyReviewDecisionRequest'
responses:
'200':
description: Review decision applied
content:
application/json:
schema:
$ref: '#/components/schemas/TenantSendPolicyReviewDecisionResponse'
/v1/billing/ledger:
get:
tags: [Billing]
summary: List recent credit ledger entries for the current tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: listBillingLedger
parameters:
- name: limit
in: query
required: false
schema:
type: integer
responses:
'200':
description: Credit ledger entries
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/CreditLedgerEntry'
/v1/billing/receipts:
get:
tags: [Billing]
summary: List recent payment receipts for the current tenant
description: Accepts either a tenant-scoped token or the default single-mailbox self-serve signup token for the same tenant.
operationId: listPaymentReceipts
parameters:
- name: limit
in: query
required: false
schema:
type: integer
responses:
'200':
description: Payment receipts
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/PaymentReceipt'
/v1/tenants/{tenantId}/did:
get:
tags: [Identity]
summary: Get the DID binding for a tenant
operationId: getTenantDidBinding
parameters:
- $ref: '#/components/parameters/TenantId'
responses:
'200':
description: DID binding
content:
application/json:
schema:
$ref: '#/components/schemas/DidBinding'
'404':
description: DID binding not found
put:
tags: [Identity]
summary: Create or update the DID binding for a tenant
operationId: upsertTenantDidBinding
parameters:
- $ref: '#/components/parameters/TenantId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpsertDidBindingRequest'
responses:
'200':
description: DID binding updated
content:
application/json:
schema:
$ref: '#/components/schemas/DidBinding'
/v1/tenants/{tenantId}/did/hosted:
post:
tags: [Identity]
summary: Create or refresh a Mailagents-hosted did:web binding for a tenant
operationId: createHostedTenantDidBinding
parameters:
- $ref: '#/components/parameters/TenantId'
responses:
'200':
description: Hosted DID binding created or updated
content:
application/json:
schema:
$ref: '#/components/schemas/DidBinding'
/did/tenants/{tenantId}/did.json:
get:
tags: [Identity]
summary: Resolve the hosted did:web document for a tenant
operationId: getHostedDidDocument
security: []
parameters:
- $ref: '#/components/parameters/TenantId'
responses:
'200':
description: DID document
content:
application/json:
schema:
$ref: '#/components/schemas/DidDocument'
'404':
description: DID document not found
/v1/debug/agents/{agentId}:
get:
tags: [Debug]
summary: Inspect agent state
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- $ref: '#/components/parameters/AgentId'
responses:
'200':
description: Agent state
/v1/debug/mailboxes/{mailboxId}:
get:
tags: [Debug]
summary: Inspect mailbox state
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- $ref: '#/components/parameters/MailboxId'
responses:
'200':
description: Mailbox state
/v1/debug/messages/{messageId}:
get:
tags: [Debug]
summary: Inspect message state and delivery events
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- $ref: '#/components/parameters/MessageId'
responses:
'200':
description: Message state and delivery events
/v1/debug/drafts/{draftId}:
get:
tags: [Debug]
summary: Inspect draft state and payload
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- $ref: '#/components/parameters/DraftId'
responses:
'200':
description: Draft state
/v1/debug/outbound-jobs/{outboundJobId}:
get:
tags: [Debug]
summary: Inspect outbound job state
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- name: outboundJobId
in: path
required: true
schema:
type: string
responses:
'200':
description: Outbound job state
/v1/debug/suppressions/{email}:
get:
tags: [Debug]
summary: Inspect suppression state for an email address
security: []
parameters:
- name: x-admin-secret
in: header
required: true
schema:
type: string
- name: email
in: path
required: true
schema:
type: string
responses:
'200':
description: Suppression state
/v1/agents:
get:
tags: [Agents]
summary: List agents
operationId: listAgents
parameters:
- name: tenantId
in: query
schema:
type: string
responses:
'200':
description: Agents
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/Agent'
post:
tags: [Agents]
summary: Create an agent
operationId: createAgent
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAgentRequest'
responses:
'201':
description: Agent created
content:
application/json:
schema:
$ref: '#/components/schemas/Agent'
/v1/agents/{agentId}:
get:
tags: [Agents]
summary: Get an agent
operationId: getAgent
parameters:
- $ref: '#/components/parameters/AgentId'
responses:
'200':
description: Agent
content:
application/json:
schema:
$ref: '#/components/schemas/Agent'
patch:
tags: [Agents]
summary: Update an agent
operationId: updateAgent
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAgentRequest'
responses:
'200':
description: Updated agent
content:
application/json:
schema:
$ref: '#/components/schemas/Agent'
/v1/agents/{agentId}/mailboxes:
post:
tags: [Mailboxes]
summary: Bind a mailbox to an agent
operationId: bindMailboxToAgent
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BindMailboxRequest'
responses:
'201':
description: Binding created
content:
application/json:
schema:
$ref: '#/components/schemas/AgentMailboxBinding'
get:
tags: [Mailboxes]
summary: List mailboxes for an agent
operationId: listAgentMailboxes
parameters:
- $ref: '#/components/parameters/AgentId'
responses:
'200':
description: Mailboxes
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/AgentMailboxBinding'
/v1/agents/{agentId}/policy:
put:
tags: [Agents]
summary: Upsert agent policy
operationId: upsertAgentPolicy
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpsertAgentPolicyRequest'
responses:
'200':
description: Policy saved
content:
application/json:
schema:
$ref: '#/components/schemas/AgentPolicy'
/v1/agents/{agentId}/tasks:
get:
tags: [Tasks]
summary: List tasks for an agent
operationId: listAgentTasks
parameters:
- $ref: '#/components/parameters/AgentId'
- name: status
in: query
schema:
$ref: '#/components/schemas/TaskStatus'
responses:
'200':
description: Tasks
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/Task'
/v1/agents/{agentId}/versions:
post:
tags: [Agents]
summary: Create an agent version
operationId: createAgentVersion
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAgentVersionRequest'
responses:
'201':
description: Agent version created
content:
application/json:
schema:
$ref: '#/components/schemas/AgentVersion'
get:
tags: [Agents]
summary: List versions for an agent
operationId: listAgentVersions
parameters:
- $ref: '#/components/parameters/AgentId'
responses:
'200':
description: Agent versions
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/AgentVersion'
/v1/agents/{agentId}/versions/{versionId}:
get:
tags: [Agents]
summary: Get an agent version
operationId: getAgentVersion
parameters:
- $ref: '#/components/parameters/AgentId'
- $ref: '#/components/parameters/VersionId'
responses:
'200':
description: Agent version
content:
application/json:
schema:
$ref: '#/components/schemas/AgentVersion'
/v1/agents/{agentId}/deployments:
post:
tags: [Agents]
summary: Create an agent deployment
operationId: createAgentDeployment
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAgentDeploymentRequest'
responses:
'201':
description: Agent deployment created
content:
application/json:
schema:
$ref: '#/components/schemas/AgentDeployment'
get:
tags: [Agents]
summary: List deployments for an agent
operationId: listAgentDeployments
parameters:
- $ref: '#/components/parameters/AgentId'
responses:
'200':
description: Agent deployments
content:
application/json:
schema:
type: object
required: [items]
properties:
items:
type: array
items:
$ref: '#/components/schemas/AgentDeployment'
/v1/agents/{agentId}/deployments/rollout:
post:
tags: [Agents]
summary: Roll out a new deployment for a target
operationId: rolloutAgentDeployment
parameters:
- $ref: '#/components/parameters/AgentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RolloutAgentDeploymentRequest'
responses:
'201':
description: Agent deployment rolled out
content:
application/json:
schema:
$ref: '#/components/schemas/AgentDeployment'
/v1/agents/{agentId}/deployments/{deploymentId}:
patch:
tags: [Agents]
summary: Update deployment status
operationId: updateAgentDeploymentStatus
parameters:
- $ref: '#/components/parameters/AgentId'
- $ref: '#/components/parameters/DeploymentId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAgentDeploymentStatusRequest'
responses:
'200':
description: Agent deployment updated
content:
application/json:
schema:
$ref: '#/components/schemas/AgentDeployment'
/v1/agents/{agentId}/deployments/{deploymentId}/rollback:
post:
tags: [Agents]
summary: Roll back to a prior deployment
operationId: rollbackAgentDeployment
parameters:
- $ref: '#/components/parameters/AgentId'
- $ref: '#/components/parameters/DeploymentId'
responses:
'200':
description: Agent deployment rolled back
content:
application/json:
schema:
$ref: '#/components/schemas/AgentDeployment'
/v1/messages/{messageId}:
get:
tags: [Messages]
summary: Get message metadata
operationId: getMessage
parameters:
- $ref: '#/components/parameters/MessageId'
responses:
'200':
description: Message
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
/v1/messages/{messageId}/content:
get:
tags: [Messages]
summary: Get normalized message content
operationId: getMessageContent
parameters:
- $ref: '#/components/parameters/MessageId'
responses:
'200':
description: Message content
content:
application/json:
schema:
$ref: '#/components/schemas/MessageContent'
/v1/messages/send:
post:
tags: [Messages]
summary: Create and send a message in one request
operationId: sendMessage
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SendMessageRequest'
responses:
'202':
description: Message accepted for sending
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAndSendAccepted'