@opusdns/api 0.281.0 → 0.283.0

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/src/openapi.yaml CHANGED
@@ -1585,6 +1585,190 @@ components:
1585
1585
  title: Update Supported Roles
1586
1586
  title: ContactsBase
1587
1587
  type: object
1588
+ Context:
1589
+ properties:
1590
+ context_id:
1591
+ examples:
1592
+ - ctx_01h45ytscbebyvny4gc8cr8ma2
1593
+ format: typeid
1594
+ pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
1595
+ title: Context Id
1596
+ type: string
1597
+ x-typeid-prefix: ctx
1598
+ conversation_id:
1599
+ examples:
1600
+ - conv_01h45ytscbebyvny4gc8cr8ma2
1601
+ format: typeid
1602
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
1603
+ title: Conversation Id
1604
+ type: string
1605
+ x-typeid-prefix: conv
1606
+ created_at:
1607
+ format: date-time
1608
+ title: Created At
1609
+ type: string
1610
+ kind:
1611
+ $ref: '#/components/schemas/MessageContextKind'
1612
+ organization_id:
1613
+ examples:
1614
+ - organization_01h45ytscbebyvny4gc8cr8ma2
1615
+ format: typeid
1616
+ pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
1617
+ title: Organization Id
1618
+ type: string
1619
+ x-typeid-prefix: organization
1620
+ payload:
1621
+ additionalProperties: true
1622
+ title: Payload
1623
+ type: object
1624
+ user_id:
1625
+ title: User Id
1626
+ type: string
1627
+ required:
1628
+ - context_id
1629
+ - conversation_id
1630
+ - organization_id
1631
+ - user_id
1632
+ - kind
1633
+ - created_at
1634
+ title: Context
1635
+ type: object
1636
+ ContextCreateRequest:
1637
+ properties:
1638
+ kind:
1639
+ $ref: '#/components/schemas/MessageContextKind'
1640
+ payload:
1641
+ additionalProperties: true
1642
+ description: Non-empty structured payload. Shape depends on `kind`.
1643
+ minProperties: 1
1644
+ title: Payload
1645
+ type: object
1646
+ required:
1647
+ - kind
1648
+ - payload
1649
+ title: ContextCreateRequest
1650
+ type: object
1651
+ ContextListResponse:
1652
+ properties:
1653
+ pagination:
1654
+ $ref: '#/components/schemas/PaginationMetadata'
1655
+ results:
1656
+ items:
1657
+ $ref: '#/components/schemas/Context'
1658
+ title: Results
1659
+ type: array
1660
+ required:
1661
+ - results
1662
+ - pagination
1663
+ title: ContextListResponse
1664
+ type: object
1665
+ Conversation:
1666
+ properties:
1667
+ conversation_id:
1668
+ examples:
1669
+ - conv_01h45ytscbebyvny4gc8cr8ma2
1670
+ format: typeid
1671
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
1672
+ title: Conversation Id
1673
+ type: string
1674
+ x-typeid-prefix: conv
1675
+ created_at:
1676
+ format: date-time
1677
+ title: Created At
1678
+ type: string
1679
+ last_message_at:
1680
+ anyOf:
1681
+ - format: date-time
1682
+ type: string
1683
+ - type: 'null'
1684
+ title: Last Message At
1685
+ message_count:
1686
+ default: 0
1687
+ title: Message Count
1688
+ type: integer
1689
+ metadata:
1690
+ additionalProperties: true
1691
+ title: Metadata
1692
+ type: object
1693
+ organization_id:
1694
+ examples:
1695
+ - organization_01h45ytscbebyvny4gc8cr8ma2
1696
+ format: typeid
1697
+ pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
1698
+ title: Organization Id
1699
+ type: string
1700
+ x-typeid-prefix: organization
1701
+ summary:
1702
+ anyOf:
1703
+ - type: string
1704
+ - type: 'null'
1705
+ description: Optional rolling summary maintained by the memory service.
1706
+ title: Summary
1707
+ title:
1708
+ anyOf:
1709
+ - type: string
1710
+ - type: 'null'
1711
+ description: Human-readable conversation title.
1712
+ title: Title
1713
+ updated_at:
1714
+ format: date-time
1715
+ title: Updated At
1716
+ type: string
1717
+ user_id:
1718
+ title: User Id
1719
+ type: string
1720
+ required:
1721
+ - conversation_id
1722
+ - organization_id
1723
+ - user_id
1724
+ - created_at
1725
+ - updated_at
1726
+ title: Conversation
1727
+ type: object
1728
+ ConversationCreateRequest:
1729
+ properties:
1730
+ metadata:
1731
+ additionalProperties: true
1732
+ title: Metadata
1733
+ type: object
1734
+ title:
1735
+ anyOf:
1736
+ - maxLength: 200
1737
+ type: string
1738
+ - type: 'null'
1739
+ title: Title
1740
+ title: ConversationCreateRequest
1741
+ type: object
1742
+ ConversationListResponse:
1743
+ properties:
1744
+ pagination:
1745
+ $ref: '#/components/schemas/PaginationMetadata'
1746
+ results:
1747
+ items:
1748
+ $ref: '#/components/schemas/Conversation'
1749
+ title: Results
1750
+ type: array
1751
+ required:
1752
+ - results
1753
+ - pagination
1754
+ title: ConversationListResponse
1755
+ type: object
1756
+ ConversationPatchRequest:
1757
+ properties:
1758
+ metadata:
1759
+ anyOf:
1760
+ - additionalProperties: true
1761
+ type: object
1762
+ - type: 'null'
1763
+ title: Metadata
1764
+ title:
1765
+ anyOf:
1766
+ - maxLength: 200
1767
+ type: string
1768
+ - type: 'null'
1769
+ title: Title
1770
+ title: ConversationPatchRequest
1771
+ type: object
1588
1772
  CreateJobBatchResponse:
1589
1773
  properties:
1590
1774
  batch_id:
@@ -6404,6 +6588,215 @@ components:
6404
6588
  - business_entity
6405
6589
  title: LocalPresenceRequirementType
6406
6590
  type: string
6591
+ MemoryFact:
6592
+ properties:
6593
+ created_at:
6594
+ format: date-time
6595
+ title: Created At
6596
+ type: string
6597
+ expires_at:
6598
+ anyOf:
6599
+ - format: date-time
6600
+ type: string
6601
+ - type: 'null'
6602
+ title: Expires At
6603
+ fact_id:
6604
+ examples:
6605
+ - fact_01h45ytscbebyvny4gc8cr8ma2
6606
+ format: typeid
6607
+ pattern: ^fact_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6608
+ title: Fact Id
6609
+ type: string
6610
+ x-typeid-prefix: fact
6611
+ key:
6612
+ maxLength: 200
6613
+ title: Key
6614
+ type: string
6615
+ kind:
6616
+ $ref: '#/components/schemas/MemoryFactKind'
6617
+ organization_id:
6618
+ examples:
6619
+ - organization_01h45ytscbebyvny4gc8cr8ma2
6620
+ format: typeid
6621
+ pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6622
+ title: Organization Id
6623
+ type: string
6624
+ x-typeid-prefix: organization
6625
+ updated_at:
6626
+ format: date-time
6627
+ title: Updated At
6628
+ type: string
6629
+ value:
6630
+ additionalProperties: true
6631
+ title: Value
6632
+ type: object
6633
+ required:
6634
+ - fact_id
6635
+ - organization_id
6636
+ - kind
6637
+ - key
6638
+ - created_at
6639
+ - updated_at
6640
+ title: MemoryFact
6641
+ type: object
6642
+ MemoryFactCreateRequest:
6643
+ properties:
6644
+ key:
6645
+ maxLength: 200
6646
+ minLength: 1
6647
+ title: Key
6648
+ type: string
6649
+ kind:
6650
+ $ref: '#/components/schemas/MemoryFactKind'
6651
+ ttl_seconds:
6652
+ anyOf:
6653
+ - minimum: 1.0
6654
+ type: integer
6655
+ - type: 'null'
6656
+ description: Optional TTL; if set, the fact expires after this many seconds.
6657
+ title: Ttl Seconds
6658
+ value:
6659
+ additionalProperties: true
6660
+ title: Value
6661
+ type: object
6662
+ required:
6663
+ - kind
6664
+ - key
6665
+ title: MemoryFactCreateRequest
6666
+ type: object
6667
+ MemoryFactKind:
6668
+ enum:
6669
+ - preference
6670
+ - note
6671
+ - other
6672
+ title: MemoryFactKind
6673
+ type: string
6674
+ MemoryFactListResponse:
6675
+ properties:
6676
+ next_cursor:
6677
+ anyOf:
6678
+ - type: string
6679
+ - type: 'null'
6680
+ title: Next Cursor
6681
+ results:
6682
+ items:
6683
+ $ref: '#/components/schemas/MemoryFact'
6684
+ title: Results
6685
+ type: array
6686
+ required:
6687
+ - results
6688
+ title: MemoryFactListResponse
6689
+ type: object
6690
+ MemoryFactPatchRequest:
6691
+ properties:
6692
+ ttl_seconds:
6693
+ anyOf:
6694
+ - minimum: 1.0
6695
+ type: integer
6696
+ - type: 'null'
6697
+ title: Ttl Seconds
6698
+ value:
6699
+ anyOf:
6700
+ - additionalProperties: true
6701
+ type: object
6702
+ - type: 'null'
6703
+ title: Value
6704
+ title: MemoryFactPatchRequest
6705
+ type: object
6706
+ Message:
6707
+ properties:
6708
+ content:
6709
+ title: Content
6710
+ type: string
6711
+ conversation_id:
6712
+ examples:
6713
+ - conv_01h45ytscbebyvny4gc8cr8ma2
6714
+ format: typeid
6715
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6716
+ title: Conversation Id
6717
+ type: string
6718
+ x-typeid-prefix: conv
6719
+ created_at:
6720
+ format: date-time
6721
+ title: Created At
6722
+ type: string
6723
+ message_id:
6724
+ examples:
6725
+ - msg_01h45ytscbebyvny4gc8cr8ma2
6726
+ format: typeid
6727
+ pattern: ^msg_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6728
+ title: Message Id
6729
+ type: string
6730
+ x-typeid-prefix: msg
6731
+ metadata:
6732
+ additionalProperties: true
6733
+ title: Metadata
6734
+ type: object
6735
+ role:
6736
+ $ref: '#/components/schemas/MessageRole'
6737
+ required:
6738
+ - message_id
6739
+ - conversation_id
6740
+ - role
6741
+ - content
6742
+ - created_at
6743
+ title: Message
6744
+ type: object
6745
+ MessageContextKind:
6746
+ enum:
6747
+ - zones
6748
+ - contacts
6749
+ - domains
6750
+ - batch_ids
6751
+ - other
6752
+ title: MessageContextKind
6753
+ type: string
6754
+ MessageCreateRequest:
6755
+ properties:
6756
+ content:
6757
+ title: Content
6758
+ type: string
6759
+ metadata:
6760
+ additionalProperties: true
6761
+ title: Metadata
6762
+ type: object
6763
+ n8n_history_id:
6764
+ anyOf:
6765
+ - type: integer
6766
+ - type: 'null'
6767
+ description: Optional reference to the originating n8n_chat_histories row.
6768
+ title: N8N History Id
6769
+ role:
6770
+ $ref: '#/components/schemas/MessageRole'
6771
+ required:
6772
+ - role
6773
+ - content
6774
+ title: MessageCreateRequest
6775
+ type: object
6776
+ MessageListResponse:
6777
+ properties:
6778
+ pagination:
6779
+ anyOf:
6780
+ - $ref: '#/components/schemas/PaginationMetadata'
6781
+ - type: 'null'
6782
+ description: Omitted when the `recent` query parameter is used.
6783
+ results:
6784
+ items:
6785
+ $ref: '#/components/schemas/Message'
6786
+ title: Results
6787
+ type: array
6788
+ required:
6789
+ - results
6790
+ title: MessageListResponse
6791
+ type: object
6792
+ MessageRole:
6793
+ enum:
6794
+ - user
6795
+ - assistant
6796
+ - system
6797
+ - tool
6798
+ title: MessageRole
6799
+ type: string
6407
6800
  MetricsGrouping:
6408
6801
  enum:
6409
6802
  - url
@@ -10279,39 +10672,1210 @@ info:
10279
10672
  \n\n"
10280
10673
  summary: OpusDNS - your gateway to a seamless domain management experience.
10281
10674
  title: OpusDNS API
10282
- version: 2026-04-30-152802
10675
+ version: 2026-05-05-155048
10283
10676
  x-logo:
10284
10677
  altText: OpusDNS API Reference
10285
10678
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
10286
10679
  openapi: 3.1.0
10287
10680
  paths:
10288
- /v1/archive/email-forward-logs/aliases/{email_forward_alias_id}:
10681
+ /v1/ai-concierge/contexts/{context_id}:
10289
10682
  get:
10290
- description: Retrieves a paginated list of email forward logs for a specific
10291
- email forward alias. Only returns logs created after the email forward was
10292
- created.
10293
- operationId: get_email_forward_logs_by_alias_v1_archive_email_forward_logs_aliases__email_forward_alias_id__get
10683
+ operationId: get_context_v1_ai_concierge_contexts__context_id__get
10294
10684
  parameters:
10295
10685
  - in: path
10296
- name: email_forward_alias_id
10686
+ name: context_id
10297
10687
  required: true
10298
10688
  schema:
10299
10689
  examples:
10300
- - email_forward_alias_01h45ytscbebyvny4gc8cr8ma2
10690
+ - ctx_01h45ytscbebyvny4gc8cr8ma2
10301
10691
  format: typeid
10302
- pattern: ^email_forward_alias_[0-7][0-9a-hjkmnpq-tv-z]{25}$
10303
- title: Email Forward Alias Id
10692
+ pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
10693
+ title: Context Id
10304
10694
  type: string
10305
- x-typeid-prefix: email_forward_alias
10306
- - in: query
10307
- name: email_forward_id
10308
- required: true
10309
- schema:
10310
- examples:
10311
- - email_forward_01h45ytscbebyvny4gc8cr8ma2
10312
- format: typeid
10313
- pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
10314
- title: Email Forward Id
10695
+ x-typeid-prefix: ctx
10696
+ responses:
10697
+ '200':
10698
+ content:
10699
+ application/json:
10700
+ schema:
10701
+ $ref: '#/components/schemas/Context'
10702
+ description: Successful Response
10703
+ '401':
10704
+ content:
10705
+ application/problem+json:
10706
+ example:
10707
+ code: ERROR_AUTHENTICATION
10708
+ detail: Additional error context.
10709
+ status: 401
10710
+ title: Authentication Error
10711
+ type: authentication
10712
+ schema:
10713
+ $ref: '#/components/schemas/Problem'
10714
+ description: Unauthorized
10715
+ '404':
10716
+ content:
10717
+ application/problem+json:
10718
+ example:
10719
+ code: ERROR_AI_CONCIERGE
10720
+ detail: AI Concierge memory resource not found
10721
+ status: 404
10722
+ title: AI Concierge memory resource not found.
10723
+ type: ai-concierge-memory-not-found
10724
+ schema:
10725
+ $ref: '#/components/schemas/Problem'
10726
+ description: Not Found
10727
+ '422':
10728
+ content:
10729
+ application/problem+json:
10730
+ schema:
10731
+ $ref: '#/components/schemas/HTTPValidationError'
10732
+ description: Validation Error
10733
+ '502':
10734
+ content:
10735
+ application/problem+json:
10736
+ example:
10737
+ code: ERROR_AI_CONCIERGE
10738
+ detail: AI Concierge memory service error
10739
+ status: 502
10740
+ title: AI Concierge memory service error.
10741
+ type: ai-concierge-memory
10742
+ schema:
10743
+ $ref: '#/components/schemas/Problem'
10744
+ description: Bad Gateway
10745
+ security:
10746
+ - OAuth2PasswordBearer: []
10747
+ - APIKeyHeader: []
10748
+ summary: Get a context entry
10749
+ tags:
10750
+ - ai_concierge
10751
+ /v1/ai-concierge/conversations:
10752
+ get:
10753
+ description: List the authenticated organization's AI Concierge conversations.
10754
+ operationId: list_conversations_v1_ai_concierge_conversations_get
10755
+ parameters:
10756
+ - in: query
10757
+ name: page
10758
+ required: false
10759
+ schema:
10760
+ default: 1
10761
+ minimum: 1
10762
+ title: Page
10763
+ type: integer
10764
+ - in: query
10765
+ name: page_size
10766
+ required: false
10767
+ schema:
10768
+ default: 20
10769
+ maximum: 200
10770
+ minimum: 1
10771
+ title: Page Size
10772
+ type: integer
10773
+ - description: Comma-separated sort fields. Prefix with `-` for DESC.
10774
+ in: query
10775
+ name: sort
10776
+ required: false
10777
+ schema:
10778
+ anyOf:
10779
+ - type: string
10780
+ - type: 'null'
10781
+ description: Comma-separated sort fields. Prefix with `-` for DESC.
10782
+ title: Sort
10783
+ - description: Full-text search on title/summary.
10784
+ in: query
10785
+ name: q
10786
+ required: false
10787
+ schema:
10788
+ anyOf:
10789
+ - type: string
10790
+ - type: 'null'
10791
+ description: Full-text search on title/summary.
10792
+ title: Q
10793
+ responses:
10794
+ '200':
10795
+ content:
10796
+ application/json:
10797
+ schema:
10798
+ $ref: '#/components/schemas/ConversationListResponse'
10799
+ description: Successful Response
10800
+ '401':
10801
+ content:
10802
+ application/problem+json:
10803
+ example:
10804
+ code: ERROR_AUTHENTICATION
10805
+ detail: Additional error context.
10806
+ status: 401
10807
+ title: Authentication Error
10808
+ type: authentication
10809
+ schema:
10810
+ $ref: '#/components/schemas/Problem'
10811
+ description: Unauthorized
10812
+ '404':
10813
+ content:
10814
+ application/problem+json:
10815
+ example:
10816
+ code: ERROR_AI_CONCIERGE
10817
+ detail: AI Concierge memory resource not found
10818
+ status: 404
10819
+ title: AI Concierge memory resource not found.
10820
+ type: ai-concierge-memory-not-found
10821
+ schema:
10822
+ $ref: '#/components/schemas/Problem'
10823
+ description: Not Found
10824
+ '422':
10825
+ content:
10826
+ application/problem+json:
10827
+ schema:
10828
+ $ref: '#/components/schemas/HTTPValidationError'
10829
+ description: Validation Error
10830
+ '502':
10831
+ content:
10832
+ application/problem+json:
10833
+ example:
10834
+ code: ERROR_AI_CONCIERGE
10835
+ detail: AI Concierge memory service error
10836
+ status: 502
10837
+ title: AI Concierge memory service error.
10838
+ type: ai-concierge-memory
10839
+ schema:
10840
+ $ref: '#/components/schemas/Problem'
10841
+ description: Bad Gateway
10842
+ security:
10843
+ - OAuth2PasswordBearer: []
10844
+ - APIKeyHeader: []
10845
+ summary: List AI Concierge conversations
10846
+ tags:
10847
+ - ai_concierge
10848
+ post:
10849
+ operationId: create_conversation_v1_ai_concierge_conversations_post
10850
+ requestBody:
10851
+ content:
10852
+ application/json:
10853
+ schema:
10854
+ $ref: '#/components/schemas/ConversationCreateRequest'
10855
+ required: true
10856
+ responses:
10857
+ '201':
10858
+ content:
10859
+ application/json:
10860
+ schema:
10861
+ $ref: '#/components/schemas/Conversation'
10862
+ description: Successful Response
10863
+ '401':
10864
+ content:
10865
+ application/problem+json:
10866
+ example:
10867
+ code: ERROR_AUTHENTICATION
10868
+ detail: Additional error context.
10869
+ status: 401
10870
+ title: Authentication Error
10871
+ type: authentication
10872
+ schema:
10873
+ $ref: '#/components/schemas/Problem'
10874
+ description: Unauthorized
10875
+ '404':
10876
+ content:
10877
+ application/problem+json:
10878
+ example:
10879
+ code: ERROR_AI_CONCIERGE
10880
+ detail: AI Concierge memory resource not found
10881
+ status: 404
10882
+ title: AI Concierge memory resource not found.
10883
+ type: ai-concierge-memory-not-found
10884
+ schema:
10885
+ $ref: '#/components/schemas/Problem'
10886
+ description: Not Found
10887
+ '422':
10888
+ content:
10889
+ application/problem+json:
10890
+ schema:
10891
+ $ref: '#/components/schemas/HTTPValidationError'
10892
+ description: Validation Error
10893
+ '502':
10894
+ content:
10895
+ application/problem+json:
10896
+ example:
10897
+ code: ERROR_AI_CONCIERGE
10898
+ detail: AI Concierge memory service error
10899
+ status: 502
10900
+ title: AI Concierge memory service error.
10901
+ type: ai-concierge-memory
10902
+ schema:
10903
+ $ref: '#/components/schemas/Problem'
10904
+ description: Bad Gateway
10905
+ security:
10906
+ - OAuth2PasswordBearer: []
10907
+ - APIKeyHeader: []
10908
+ summary: Create an AI Concierge conversation
10909
+ tags:
10910
+ - ai_concierge
10911
+ /v1/ai-concierge/conversations/{conversation_id}:
10912
+ delete:
10913
+ description: Permanently delete a conversation, its messages, and any attached
10914
+ contexts.
10915
+ operationId: delete_conversation_v1_ai_concierge_conversations__conversation_id__delete
10916
+ parameters:
10917
+ - in: path
10918
+ name: conversation_id
10919
+ required: true
10920
+ schema:
10921
+ examples:
10922
+ - conv_01h45ytscbebyvny4gc8cr8ma2
10923
+ format: typeid
10924
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
10925
+ title: Conversation Id
10926
+ type: string
10927
+ x-typeid-prefix: conv
10928
+ responses:
10929
+ '204':
10930
+ description: Successful Response
10931
+ '401':
10932
+ content:
10933
+ application/problem+json:
10934
+ example:
10935
+ code: ERROR_AUTHENTICATION
10936
+ detail: Additional error context.
10937
+ status: 401
10938
+ title: Authentication Error
10939
+ type: authentication
10940
+ schema:
10941
+ $ref: '#/components/schemas/Problem'
10942
+ description: Unauthorized
10943
+ '404':
10944
+ content:
10945
+ application/problem+json:
10946
+ example:
10947
+ code: ERROR_AI_CONCIERGE
10948
+ detail: AI Concierge memory resource not found
10949
+ status: 404
10950
+ title: AI Concierge memory resource not found.
10951
+ type: ai-concierge-memory-not-found
10952
+ schema:
10953
+ $ref: '#/components/schemas/Problem'
10954
+ description: Not Found
10955
+ '422':
10956
+ content:
10957
+ application/problem+json:
10958
+ schema:
10959
+ $ref: '#/components/schemas/HTTPValidationError'
10960
+ description: Validation Error
10961
+ '502':
10962
+ content:
10963
+ application/problem+json:
10964
+ example:
10965
+ code: ERROR_AI_CONCIERGE
10966
+ detail: AI Concierge memory service error
10967
+ status: 502
10968
+ title: AI Concierge memory service error.
10969
+ type: ai-concierge-memory
10970
+ schema:
10971
+ $ref: '#/components/schemas/Problem'
10972
+ description: Bad Gateway
10973
+ security:
10974
+ - OAuth2PasswordBearer: []
10975
+ - APIKeyHeader: []
10976
+ summary: Delete a conversation
10977
+ tags:
10978
+ - ai_concierge
10979
+ get:
10980
+ operationId: get_conversation_v1_ai_concierge_conversations__conversation_id__get
10981
+ parameters:
10982
+ - in: path
10983
+ name: conversation_id
10984
+ required: true
10985
+ schema:
10986
+ examples:
10987
+ - conv_01h45ytscbebyvny4gc8cr8ma2
10988
+ format: typeid
10989
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
10990
+ title: Conversation Id
10991
+ type: string
10992
+ x-typeid-prefix: conv
10993
+ responses:
10994
+ '200':
10995
+ content:
10996
+ application/json:
10997
+ schema:
10998
+ $ref: '#/components/schemas/Conversation'
10999
+ description: Successful Response
11000
+ '401':
11001
+ content:
11002
+ application/problem+json:
11003
+ example:
11004
+ code: ERROR_AUTHENTICATION
11005
+ detail: Additional error context.
11006
+ status: 401
11007
+ title: Authentication Error
11008
+ type: authentication
11009
+ schema:
11010
+ $ref: '#/components/schemas/Problem'
11011
+ description: Unauthorized
11012
+ '404':
11013
+ content:
11014
+ application/problem+json:
11015
+ example:
11016
+ code: ERROR_AI_CONCIERGE
11017
+ detail: AI Concierge memory resource not found
11018
+ status: 404
11019
+ title: AI Concierge memory resource not found.
11020
+ type: ai-concierge-memory-not-found
11021
+ schema:
11022
+ $ref: '#/components/schemas/Problem'
11023
+ description: Not Found
11024
+ '422':
11025
+ content:
11026
+ application/problem+json:
11027
+ schema:
11028
+ $ref: '#/components/schemas/HTTPValidationError'
11029
+ description: Validation Error
11030
+ '502':
11031
+ content:
11032
+ application/problem+json:
11033
+ example:
11034
+ code: ERROR_AI_CONCIERGE
11035
+ detail: AI Concierge memory service error
11036
+ status: 502
11037
+ title: AI Concierge memory service error.
11038
+ type: ai-concierge-memory
11039
+ schema:
11040
+ $ref: '#/components/schemas/Problem'
11041
+ description: Bad Gateway
11042
+ security:
11043
+ - OAuth2PasswordBearer: []
11044
+ - APIKeyHeader: []
11045
+ summary: Get a conversation
11046
+ tags:
11047
+ - ai_concierge
11048
+ patch:
11049
+ description: Update conversation title or metadata. Supports optimistic concurrency
11050
+ via `If-Match`.
11051
+ operationId: patch_conversation_v1_ai_concierge_conversations__conversation_id__patch
11052
+ parameters:
11053
+ - in: path
11054
+ name: conversation_id
11055
+ required: true
11056
+ schema:
11057
+ examples:
11058
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11059
+ format: typeid
11060
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11061
+ title: Conversation Id
11062
+ type: string
11063
+ x-typeid-prefix: conv
11064
+ - in: header
11065
+ name: If-Match
11066
+ required: false
11067
+ schema:
11068
+ anyOf:
11069
+ - type: string
11070
+ - type: 'null'
11071
+ title: If-Match
11072
+ requestBody:
11073
+ content:
11074
+ application/json:
11075
+ schema:
11076
+ $ref: '#/components/schemas/ConversationPatchRequest'
11077
+ required: true
11078
+ responses:
11079
+ '200':
11080
+ content:
11081
+ application/json:
11082
+ schema:
11083
+ $ref: '#/components/schemas/Conversation'
11084
+ description: Successful Response
11085
+ '401':
11086
+ content:
11087
+ application/problem+json:
11088
+ example:
11089
+ code: ERROR_AUTHENTICATION
11090
+ detail: Additional error context.
11091
+ status: 401
11092
+ title: Authentication Error
11093
+ type: authentication
11094
+ schema:
11095
+ $ref: '#/components/schemas/Problem'
11096
+ description: Unauthorized
11097
+ '404':
11098
+ content:
11099
+ application/problem+json:
11100
+ example:
11101
+ code: ERROR_AI_CONCIERGE
11102
+ detail: AI Concierge memory resource not found
11103
+ status: 404
11104
+ title: AI Concierge memory resource not found.
11105
+ type: ai-concierge-memory-not-found
11106
+ schema:
11107
+ $ref: '#/components/schemas/Problem'
11108
+ description: Not Found
11109
+ '422':
11110
+ content:
11111
+ application/problem+json:
11112
+ schema:
11113
+ $ref: '#/components/schemas/HTTPValidationError'
11114
+ description: Validation Error
11115
+ '502':
11116
+ content:
11117
+ application/problem+json:
11118
+ example:
11119
+ code: ERROR_AI_CONCIERGE
11120
+ detail: AI Concierge memory service error
11121
+ status: 502
11122
+ title: AI Concierge memory service error.
11123
+ type: ai-concierge-memory
11124
+ schema:
11125
+ $ref: '#/components/schemas/Problem'
11126
+ description: Bad Gateway
11127
+ security:
11128
+ - OAuth2PasswordBearer: []
11129
+ - APIKeyHeader: []
11130
+ summary: Update a conversation
11131
+ tags:
11132
+ - ai_concierge
11133
+ /v1/ai-concierge/conversations/{conversation_id}/contexts:
11134
+ get:
11135
+ operationId: list_contexts_v1_ai_concierge_conversations__conversation_id__contexts_get
11136
+ parameters:
11137
+ - in: path
11138
+ name: conversation_id
11139
+ required: true
11140
+ schema:
11141
+ examples:
11142
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11143
+ format: typeid
11144
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11145
+ title: Conversation Id
11146
+ type: string
11147
+ x-typeid-prefix: conv
11148
+ - in: query
11149
+ name: page
11150
+ required: false
11151
+ schema:
11152
+ default: 1
11153
+ minimum: 1
11154
+ title: Page
11155
+ type: integer
11156
+ - in: query
11157
+ name: page_size
11158
+ required: false
11159
+ schema:
11160
+ default: 20
11161
+ maximum: 200
11162
+ minimum: 1
11163
+ title: Page Size
11164
+ type: integer
11165
+ responses:
11166
+ '200':
11167
+ content:
11168
+ application/json:
11169
+ schema:
11170
+ $ref: '#/components/schemas/ContextListResponse'
11171
+ description: Successful Response
11172
+ '401':
11173
+ content:
11174
+ application/problem+json:
11175
+ example:
11176
+ code: ERROR_AUTHENTICATION
11177
+ detail: Additional error context.
11178
+ status: 401
11179
+ title: Authentication Error
11180
+ type: authentication
11181
+ schema:
11182
+ $ref: '#/components/schemas/Problem'
11183
+ description: Unauthorized
11184
+ '404':
11185
+ content:
11186
+ application/problem+json:
11187
+ example:
11188
+ code: ERROR_AI_CONCIERGE
11189
+ detail: AI Concierge memory resource not found
11190
+ status: 404
11191
+ title: AI Concierge memory resource not found.
11192
+ type: ai-concierge-memory-not-found
11193
+ schema:
11194
+ $ref: '#/components/schemas/Problem'
11195
+ description: Not Found
11196
+ '422':
11197
+ content:
11198
+ application/problem+json:
11199
+ schema:
11200
+ $ref: '#/components/schemas/HTTPValidationError'
11201
+ description: Validation Error
11202
+ '502':
11203
+ content:
11204
+ application/problem+json:
11205
+ example:
11206
+ code: ERROR_AI_CONCIERGE
11207
+ detail: AI Concierge memory service error
11208
+ status: 502
11209
+ title: AI Concierge memory service error.
11210
+ type: ai-concierge-memory
11211
+ schema:
11212
+ $ref: '#/components/schemas/Problem'
11213
+ description: Bad Gateway
11214
+ security:
11215
+ - OAuth2PasswordBearer: []
11216
+ - APIKeyHeader: []
11217
+ summary: List contexts attached to a conversation
11218
+ tags:
11219
+ - ai_concierge
11220
+ post:
11221
+ operationId: create_context_v1_ai_concierge_conversations__conversation_id__contexts_post
11222
+ parameters:
11223
+ - in: path
11224
+ name: conversation_id
11225
+ required: true
11226
+ schema:
11227
+ examples:
11228
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11229
+ format: typeid
11230
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11231
+ title: Conversation Id
11232
+ type: string
11233
+ x-typeid-prefix: conv
11234
+ requestBody:
11235
+ content:
11236
+ application/json:
11237
+ schema:
11238
+ $ref: '#/components/schemas/ContextCreateRequest'
11239
+ required: true
11240
+ responses:
11241
+ '201':
11242
+ content:
11243
+ application/json:
11244
+ schema:
11245
+ $ref: '#/components/schemas/Context'
11246
+ description: Successful Response
11247
+ '401':
11248
+ content:
11249
+ application/problem+json:
11250
+ example:
11251
+ code: ERROR_AUTHENTICATION
11252
+ detail: Additional error context.
11253
+ status: 401
11254
+ title: Authentication Error
11255
+ type: authentication
11256
+ schema:
11257
+ $ref: '#/components/schemas/Problem'
11258
+ description: Unauthorized
11259
+ '404':
11260
+ content:
11261
+ application/problem+json:
11262
+ example:
11263
+ code: ERROR_AI_CONCIERGE
11264
+ detail: AI Concierge memory resource not found
11265
+ status: 404
11266
+ title: AI Concierge memory resource not found.
11267
+ type: ai-concierge-memory-not-found
11268
+ schema:
11269
+ $ref: '#/components/schemas/Problem'
11270
+ description: Not Found
11271
+ '422':
11272
+ content:
11273
+ application/problem+json:
11274
+ schema:
11275
+ $ref: '#/components/schemas/HTTPValidationError'
11276
+ description: Validation Error
11277
+ '502':
11278
+ content:
11279
+ application/problem+json:
11280
+ example:
11281
+ code: ERROR_AI_CONCIERGE
11282
+ detail: AI Concierge memory service error
11283
+ status: 502
11284
+ title: AI Concierge memory service error.
11285
+ type: ai-concierge-memory
11286
+ schema:
11287
+ $ref: '#/components/schemas/Problem'
11288
+ description: Bad Gateway
11289
+ security:
11290
+ - OAuth2PasswordBearer: []
11291
+ - APIKeyHeader: []
11292
+ summary: Attach a context to a conversation
11293
+ tags:
11294
+ - ai_concierge
11295
+ /v1/ai-concierge/conversations/{conversation_id}/messages:
11296
+ get:
11297
+ operationId: list_messages_v1_ai_concierge_conversations__conversation_id__messages_get
11298
+ parameters:
11299
+ - in: path
11300
+ name: conversation_id
11301
+ required: true
11302
+ schema:
11303
+ examples:
11304
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11305
+ format: typeid
11306
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11307
+ title: Conversation Id
11308
+ type: string
11309
+ x-typeid-prefix: conv
11310
+ - in: query
11311
+ name: page
11312
+ required: false
11313
+ schema:
11314
+ default: 1
11315
+ minimum: 1
11316
+ title: Page
11317
+ type: integer
11318
+ - in: query
11319
+ name: page_size
11320
+ required: false
11321
+ schema:
11322
+ default: 20
11323
+ maximum: 200
11324
+ minimum: 1
11325
+ title: Page Size
11326
+ type: integer
11327
+ - description: If set, returns last N messages and overrides pagination.
11328
+ in: query
11329
+ name: recent
11330
+ required: false
11331
+ schema:
11332
+ anyOf:
11333
+ - maximum: 200
11334
+ minimum: 1
11335
+ type: integer
11336
+ - type: 'null'
11337
+ description: If set, returns last N messages and overrides pagination.
11338
+ title: Recent
11339
+ - description: Comma-separated tokens to exclude (case-insensitive). Supports
11340
+ `tools`.
11341
+ in: query
11342
+ name: exclude
11343
+ required: false
11344
+ schema:
11345
+ anyOf:
11346
+ - type: string
11347
+ - type: 'null'
11348
+ description: Comma-separated tokens to exclude (case-insensitive). Supports
11349
+ `tools`.
11350
+ title: Exclude
11351
+ responses:
11352
+ '200':
11353
+ content:
11354
+ application/json:
11355
+ schema:
11356
+ $ref: '#/components/schemas/MessageListResponse'
11357
+ description: Successful Response
11358
+ '401':
11359
+ content:
11360
+ application/problem+json:
11361
+ example:
11362
+ code: ERROR_AUTHENTICATION
11363
+ detail: Additional error context.
11364
+ status: 401
11365
+ title: Authentication Error
11366
+ type: authentication
11367
+ schema:
11368
+ $ref: '#/components/schemas/Problem'
11369
+ description: Unauthorized
11370
+ '404':
11371
+ content:
11372
+ application/problem+json:
11373
+ example:
11374
+ code: ERROR_AI_CONCIERGE
11375
+ detail: AI Concierge memory resource not found
11376
+ status: 404
11377
+ title: AI Concierge memory resource not found.
11378
+ type: ai-concierge-memory-not-found
11379
+ schema:
11380
+ $ref: '#/components/schemas/Problem'
11381
+ description: Not Found
11382
+ '422':
11383
+ content:
11384
+ application/problem+json:
11385
+ schema:
11386
+ $ref: '#/components/schemas/HTTPValidationError'
11387
+ description: Validation Error
11388
+ '502':
11389
+ content:
11390
+ application/problem+json:
11391
+ example:
11392
+ code: ERROR_AI_CONCIERGE
11393
+ detail: AI Concierge memory service error
11394
+ status: 502
11395
+ title: AI Concierge memory service error.
11396
+ type: ai-concierge-memory
11397
+ schema:
11398
+ $ref: '#/components/schemas/Problem'
11399
+ description: Bad Gateway
11400
+ security:
11401
+ - OAuth2PasswordBearer: []
11402
+ - APIKeyHeader: []
11403
+ summary: List messages in a conversation
11404
+ tags:
11405
+ - ai_concierge
11406
+ post:
11407
+ operationId: create_message_v1_ai_concierge_conversations__conversation_id__messages_post
11408
+ parameters:
11409
+ - in: path
11410
+ name: conversation_id
11411
+ required: true
11412
+ schema:
11413
+ examples:
11414
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11415
+ format: typeid
11416
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11417
+ title: Conversation Id
11418
+ type: string
11419
+ x-typeid-prefix: conv
11420
+ requestBody:
11421
+ content:
11422
+ application/json:
11423
+ schema:
11424
+ $ref: '#/components/schemas/MessageCreateRequest'
11425
+ required: true
11426
+ responses:
11427
+ '201':
11428
+ content:
11429
+ application/json:
11430
+ schema:
11431
+ $ref: '#/components/schemas/Message'
11432
+ description: Successful Response
11433
+ '401':
11434
+ content:
11435
+ application/problem+json:
11436
+ example:
11437
+ code: ERROR_AUTHENTICATION
11438
+ detail: Additional error context.
11439
+ status: 401
11440
+ title: Authentication Error
11441
+ type: authentication
11442
+ schema:
11443
+ $ref: '#/components/schemas/Problem'
11444
+ description: Unauthorized
11445
+ '404':
11446
+ content:
11447
+ application/problem+json:
11448
+ example:
11449
+ code: ERROR_AI_CONCIERGE
11450
+ detail: AI Concierge memory resource not found
11451
+ status: 404
11452
+ title: AI Concierge memory resource not found.
11453
+ type: ai-concierge-memory-not-found
11454
+ schema:
11455
+ $ref: '#/components/schemas/Problem'
11456
+ description: Not Found
11457
+ '422':
11458
+ content:
11459
+ application/problem+json:
11460
+ schema:
11461
+ $ref: '#/components/schemas/HTTPValidationError'
11462
+ description: Validation Error
11463
+ '502':
11464
+ content:
11465
+ application/problem+json:
11466
+ example:
11467
+ code: ERROR_AI_CONCIERGE
11468
+ detail: AI Concierge memory service error
11469
+ status: 502
11470
+ title: AI Concierge memory service error.
11471
+ type: ai-concierge-memory
11472
+ schema:
11473
+ $ref: '#/components/schemas/Problem'
11474
+ description: Bad Gateway
11475
+ security:
11476
+ - OAuth2PasswordBearer: []
11477
+ - APIKeyHeader: []
11478
+ summary: Append a message to a conversation
11479
+ tags:
11480
+ - ai_concierge
11481
+ /v1/ai-concierge/conversations/{conversation_id}/messages/{message_id}:
11482
+ get:
11483
+ operationId: get_message_v1_ai_concierge_conversations__conversation_id__messages__message_id__get
11484
+ parameters:
11485
+ - in: path
11486
+ name: conversation_id
11487
+ required: true
11488
+ schema:
11489
+ examples:
11490
+ - conv_01h45ytscbebyvny4gc8cr8ma2
11491
+ format: typeid
11492
+ pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11493
+ title: Conversation Id
11494
+ type: string
11495
+ x-typeid-prefix: conv
11496
+ - in: path
11497
+ name: message_id
11498
+ required: true
11499
+ schema:
11500
+ examples:
11501
+ - msg_01h45ytscbebyvny4gc8cr8ma2
11502
+ format: typeid
11503
+ pattern: ^msg_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11504
+ title: Message Id
11505
+ type: string
11506
+ x-typeid-prefix: msg
11507
+ responses:
11508
+ '200':
11509
+ content:
11510
+ application/json:
11511
+ schema:
11512
+ $ref: '#/components/schemas/Message'
11513
+ description: Successful Response
11514
+ '401':
11515
+ content:
11516
+ application/problem+json:
11517
+ example:
11518
+ code: ERROR_AUTHENTICATION
11519
+ detail: Additional error context.
11520
+ status: 401
11521
+ title: Authentication Error
11522
+ type: authentication
11523
+ schema:
11524
+ $ref: '#/components/schemas/Problem'
11525
+ description: Unauthorized
11526
+ '404':
11527
+ content:
11528
+ application/problem+json:
11529
+ example:
11530
+ code: ERROR_AI_CONCIERGE
11531
+ detail: AI Concierge memory resource not found
11532
+ status: 404
11533
+ title: AI Concierge memory resource not found.
11534
+ type: ai-concierge-memory-not-found
11535
+ schema:
11536
+ $ref: '#/components/schemas/Problem'
11537
+ description: Not Found
11538
+ '422':
11539
+ content:
11540
+ application/problem+json:
11541
+ schema:
11542
+ $ref: '#/components/schemas/HTTPValidationError'
11543
+ description: Validation Error
11544
+ '502':
11545
+ content:
11546
+ application/problem+json:
11547
+ example:
11548
+ code: ERROR_AI_CONCIERGE
11549
+ detail: AI Concierge memory service error
11550
+ status: 502
11551
+ title: AI Concierge memory service error.
11552
+ type: ai-concierge-memory
11553
+ schema:
11554
+ $ref: '#/components/schemas/Problem'
11555
+ description: Bad Gateway
11556
+ security:
11557
+ - OAuth2PasswordBearer: []
11558
+ - APIKeyHeader: []
11559
+ summary: Get a message
11560
+ tags:
11561
+ - ai_concierge
11562
+ /v1/ai-concierge/memory/facts:
11563
+ get:
11564
+ description: List long-term, organization-scoped memory facts available to the
11565
+ AI Concierge.
11566
+ operationId: list_memory_facts_v1_ai_concierge_memory_facts_get
11567
+ parameters:
11568
+ - in: query
11569
+ name: limit
11570
+ required: false
11571
+ schema:
11572
+ default: 50
11573
+ maximum: 200
11574
+ minimum: 1
11575
+ title: Limit
11576
+ type: integer
11577
+ - in: query
11578
+ name: cursor
11579
+ required: false
11580
+ schema:
11581
+ anyOf:
11582
+ - type: string
11583
+ - type: 'null'
11584
+ title: Cursor
11585
+ - in: query
11586
+ name: kind
11587
+ required: false
11588
+ schema:
11589
+ anyOf:
11590
+ - type: string
11591
+ - type: 'null'
11592
+ title: Kind
11593
+ responses:
11594
+ '200':
11595
+ content:
11596
+ application/json:
11597
+ schema:
11598
+ $ref: '#/components/schemas/MemoryFactListResponse'
11599
+ description: Successful Response
11600
+ '401':
11601
+ content:
11602
+ application/problem+json:
11603
+ example:
11604
+ code: ERROR_AUTHENTICATION
11605
+ detail: Additional error context.
11606
+ status: 401
11607
+ title: Authentication Error
11608
+ type: authentication
11609
+ schema:
11610
+ $ref: '#/components/schemas/Problem'
11611
+ description: Unauthorized
11612
+ '404':
11613
+ content:
11614
+ application/problem+json:
11615
+ example:
11616
+ code: ERROR_AI_CONCIERGE
11617
+ detail: AI Concierge memory resource not found
11618
+ status: 404
11619
+ title: AI Concierge memory resource not found.
11620
+ type: ai-concierge-memory-not-found
11621
+ schema:
11622
+ $ref: '#/components/schemas/Problem'
11623
+ description: Not Found
11624
+ '422':
11625
+ content:
11626
+ application/problem+json:
11627
+ schema:
11628
+ $ref: '#/components/schemas/HTTPValidationError'
11629
+ description: Validation Error
11630
+ '502':
11631
+ content:
11632
+ application/problem+json:
11633
+ example:
11634
+ code: ERROR_AI_CONCIERGE
11635
+ detail: AI Concierge memory service error
11636
+ status: 502
11637
+ title: AI Concierge memory service error.
11638
+ type: ai-concierge-memory
11639
+ schema:
11640
+ $ref: '#/components/schemas/Problem'
11641
+ description: Bad Gateway
11642
+ security:
11643
+ - OAuth2PasswordBearer: []
11644
+ - APIKeyHeader: []
11645
+ summary: List long-term memory facts
11646
+ tags:
11647
+ - ai_concierge
11648
+ post:
11649
+ operationId: create_memory_fact_v1_ai_concierge_memory_facts_post
11650
+ requestBody:
11651
+ content:
11652
+ application/json:
11653
+ schema:
11654
+ $ref: '#/components/schemas/MemoryFactCreateRequest'
11655
+ required: true
11656
+ responses:
11657
+ '201':
11658
+ content:
11659
+ application/json:
11660
+ schema:
11661
+ $ref: '#/components/schemas/MemoryFact'
11662
+ description: Successful Response
11663
+ '401':
11664
+ content:
11665
+ application/problem+json:
11666
+ example:
11667
+ code: ERROR_AUTHENTICATION
11668
+ detail: Additional error context.
11669
+ status: 401
11670
+ title: Authentication Error
11671
+ type: authentication
11672
+ schema:
11673
+ $ref: '#/components/schemas/Problem'
11674
+ description: Unauthorized
11675
+ '404':
11676
+ content:
11677
+ application/problem+json:
11678
+ example:
11679
+ code: ERROR_AI_CONCIERGE
11680
+ detail: AI Concierge memory resource not found
11681
+ status: 404
11682
+ title: AI Concierge memory resource not found.
11683
+ type: ai-concierge-memory-not-found
11684
+ schema:
11685
+ $ref: '#/components/schemas/Problem'
11686
+ description: Not Found
11687
+ '422':
11688
+ content:
11689
+ application/problem+json:
11690
+ schema:
11691
+ $ref: '#/components/schemas/HTTPValidationError'
11692
+ description: Validation Error
11693
+ '502':
11694
+ content:
11695
+ application/problem+json:
11696
+ example:
11697
+ code: ERROR_AI_CONCIERGE
11698
+ detail: AI Concierge memory service error
11699
+ status: 502
11700
+ title: AI Concierge memory service error.
11701
+ type: ai-concierge-memory
11702
+ schema:
11703
+ $ref: '#/components/schemas/Problem'
11704
+ description: Bad Gateway
11705
+ security:
11706
+ - OAuth2PasswordBearer: []
11707
+ - APIKeyHeader: []
11708
+ summary: Create a long-term memory fact
11709
+ tags:
11710
+ - ai_concierge
11711
+ /v1/ai-concierge/memory/facts/{fact_id}:
11712
+ delete:
11713
+ operationId: delete_memory_fact_v1_ai_concierge_memory_facts__fact_id__delete
11714
+ parameters:
11715
+ - in: path
11716
+ name: fact_id
11717
+ required: true
11718
+ schema:
11719
+ examples:
11720
+ - fact_01h45ytscbebyvny4gc8cr8ma2
11721
+ format: typeid
11722
+ pattern: ^fact_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11723
+ title: Fact Id
11724
+ type: string
11725
+ x-typeid-prefix: fact
11726
+ responses:
11727
+ '204':
11728
+ description: Successful Response
11729
+ '401':
11730
+ content:
11731
+ application/problem+json:
11732
+ example:
11733
+ code: ERROR_AUTHENTICATION
11734
+ detail: Additional error context.
11735
+ status: 401
11736
+ title: Authentication Error
11737
+ type: authentication
11738
+ schema:
11739
+ $ref: '#/components/schemas/Problem'
11740
+ description: Unauthorized
11741
+ '404':
11742
+ content:
11743
+ application/problem+json:
11744
+ example:
11745
+ code: ERROR_AI_CONCIERGE
11746
+ detail: AI Concierge memory resource not found
11747
+ status: 404
11748
+ title: AI Concierge memory resource not found.
11749
+ type: ai-concierge-memory-not-found
11750
+ schema:
11751
+ $ref: '#/components/schemas/Problem'
11752
+ description: Not Found
11753
+ '422':
11754
+ content:
11755
+ application/problem+json:
11756
+ schema:
11757
+ $ref: '#/components/schemas/HTTPValidationError'
11758
+ description: Validation Error
11759
+ '502':
11760
+ content:
11761
+ application/problem+json:
11762
+ example:
11763
+ code: ERROR_AI_CONCIERGE
11764
+ detail: AI Concierge memory service error
11765
+ status: 502
11766
+ title: AI Concierge memory service error.
11767
+ type: ai-concierge-memory
11768
+ schema:
11769
+ $ref: '#/components/schemas/Problem'
11770
+ description: Bad Gateway
11771
+ security:
11772
+ - OAuth2PasswordBearer: []
11773
+ - APIKeyHeader: []
11774
+ summary: Delete a long-term memory fact
11775
+ tags:
11776
+ - ai_concierge
11777
+ patch:
11778
+ operationId: patch_memory_fact_v1_ai_concierge_memory_facts__fact_id__patch
11779
+ parameters:
11780
+ - in: path
11781
+ name: fact_id
11782
+ required: true
11783
+ schema:
11784
+ examples:
11785
+ - fact_01h45ytscbebyvny4gc8cr8ma2
11786
+ format: typeid
11787
+ pattern: ^fact_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11788
+ title: Fact Id
11789
+ type: string
11790
+ x-typeid-prefix: fact
11791
+ requestBody:
11792
+ content:
11793
+ application/json:
11794
+ schema:
11795
+ $ref: '#/components/schemas/MemoryFactPatchRequest'
11796
+ required: true
11797
+ responses:
11798
+ '200':
11799
+ content:
11800
+ application/json:
11801
+ schema:
11802
+ $ref: '#/components/schemas/MemoryFact'
11803
+ description: Successful Response
11804
+ '401':
11805
+ content:
11806
+ application/problem+json:
11807
+ example:
11808
+ code: ERROR_AUTHENTICATION
11809
+ detail: Additional error context.
11810
+ status: 401
11811
+ title: Authentication Error
11812
+ type: authentication
11813
+ schema:
11814
+ $ref: '#/components/schemas/Problem'
11815
+ description: Unauthorized
11816
+ '404':
11817
+ content:
11818
+ application/problem+json:
11819
+ example:
11820
+ code: ERROR_AI_CONCIERGE
11821
+ detail: AI Concierge memory resource not found
11822
+ status: 404
11823
+ title: AI Concierge memory resource not found.
11824
+ type: ai-concierge-memory-not-found
11825
+ schema:
11826
+ $ref: '#/components/schemas/Problem'
11827
+ description: Not Found
11828
+ '422':
11829
+ content:
11830
+ application/problem+json:
11831
+ schema:
11832
+ $ref: '#/components/schemas/HTTPValidationError'
11833
+ description: Validation Error
11834
+ '502':
11835
+ content:
11836
+ application/problem+json:
11837
+ example:
11838
+ code: ERROR_AI_CONCIERGE
11839
+ detail: AI Concierge memory service error
11840
+ status: 502
11841
+ title: AI Concierge memory service error.
11842
+ type: ai-concierge-memory
11843
+ schema:
11844
+ $ref: '#/components/schemas/Problem'
11845
+ description: Bad Gateway
11846
+ security:
11847
+ - OAuth2PasswordBearer: []
11848
+ - APIKeyHeader: []
11849
+ summary: Update a long-term memory fact
11850
+ tags:
11851
+ - ai_concierge
11852
+ /v1/archive/email-forward-logs/aliases/{email_forward_alias_id}:
11853
+ get:
11854
+ description: Retrieves a paginated list of email forward logs for a specific
11855
+ email forward alias. Only returns logs created after the email forward was
11856
+ created.
11857
+ operationId: get_email_forward_logs_by_alias_v1_archive_email_forward_logs_aliases__email_forward_alias_id__get
11858
+ parameters:
11859
+ - in: path
11860
+ name: email_forward_alias_id
11861
+ required: true
11862
+ schema:
11863
+ examples:
11864
+ - email_forward_alias_01h45ytscbebyvny4gc8cr8ma2
11865
+ format: typeid
11866
+ pattern: ^email_forward_alias_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11867
+ title: Email Forward Alias Id
11868
+ type: string
11869
+ x-typeid-prefix: email_forward_alias
11870
+ - in: query
11871
+ name: email_forward_id
11872
+ required: true
11873
+ schema:
11874
+ examples:
11875
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
11876
+ format: typeid
11877
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
11878
+ title: Email Forward Id
10315
11879
  type: string
10316
11880
  x-typeid-prefix: email_forward
10317
11881
  - in: query
@@ -16697,6 +18261,15 @@ paths:
16697
18261
  title: Domain Management Error
16698
18262
  tld: Additional error context.
16699
18263
  type: domain-tld-not-available
18264
+ Domain Transfer AuthInfo Malformed:
18265
+ value:
18266
+ code: ERROR_DOMAIN_TRANSFER_AUTHINFO_MALFORMED
18267
+ detail: There was an error transferring the domain
18268
+ domain_name: Additional error context.
18269
+ reason: 'Domain transfer failed: AuthInfo is missing or malformed'
18270
+ status: 400
18271
+ title: Domain Transfer AuthInfo Malformed
18272
+ type: domain-transfer-auth-info-malformed
16700
18273
  Domain Transfer Error:
16701
18274
  value:
16702
18275
  code: ERROR_DOMAIN_TRANSFER
@@ -16709,6 +18282,20 @@ paths:
16709
18282
  schema:
16710
18283
  $ref: '#/components/schemas/Problem'
16711
18284
  description: Bad Request
18285
+ '403':
18286
+ content:
18287
+ application/problem+json:
18288
+ example:
18289
+ code: ERROR_DOMAIN_TRANSFER_INVALID_AUTH_CODE
18290
+ detail: There was an error transferring the domain
18291
+ domain_name: Additional error context.
18292
+ reason: Domain transfer failed, invalid auth code provided
18293
+ status: 403
18294
+ title: Domain Transfer Error
18295
+ type: domain-transfer-invalid-auth
18296
+ schema:
18297
+ $ref: '#/components/schemas/Problem'
18298
+ description: Forbidden
16712
18299
  '404':
16713
18300
  content:
16714
18301
  application/problem+json:
@@ -16725,13 +18312,34 @@ paths:
16725
18312
  '409':
16726
18313
  content:
16727
18314
  application/problem+json:
16728
- example:
16729
- code: ERROR_DOMAIN_EXISTS
16730
- detail: Domain already exists
16731
- domain_name: Additional error context.
16732
- status: 409
16733
- title: Domain Management Error
16734
- type: domain-exists
18315
+ examples:
18316
+ Domain Management Error:
18317
+ value:
18318
+ code: ERROR_DOMAIN_EXISTS
18319
+ detail: Domain already exists
18320
+ domain_name: Additional error context.
18321
+ status: 409
18322
+ title: Domain Management Error
18323
+ type: domain-exists
18324
+ Domain Transfer Already Owned:
18325
+ value:
18326
+ code: ERROR_DOMAIN_TRANSFER_ALREADY_OWNED
18327
+ detail: There was an error transferring the domain
18328
+ domain_name: Additional error context.
18329
+ reason: Domain is already managed by your registry account; transfer
18330
+ is not applicable
18331
+ status: 409
18332
+ title: Domain Transfer Already Owned
18333
+ type: domain-transfer-already-owned
18334
+ Domain Transfer Error:
18335
+ value:
18336
+ code: ERROR_DOMAIN_TRANSFER_NOT_ALLOWED
18337
+ detail: There was an error transferring the domain
18338
+ domain_name: Additional error context.
18339
+ reason: Domain transfer was rejected by the registry
18340
+ status: 409
18341
+ title: Domain Transfer Error
18342
+ type: domain-transfer-rejected
16735
18343
  schema:
16736
18344
  $ref: '#/components/schemas/Problem'
16737
18345
  description: Conflict