2026-07-16 17:22:09 +02:00
|
|
|
# /messaging/v1/subscriptions:
|
|
|
|
|
post: # post_messaging_v1_subscriptions
|
|
|
|
|
summary: Subscribe the messaging client to an array of content topics
|
2026-08-03 13:03:44 +02:00
|
|
|
description: Subscribe the messaging client to an array of content topics.
|
2026-07-16 17:22:09 +02:00
|
|
|
operationId: postMessagingSubscriptions
|
|
|
|
|
tags:
|
|
|
|
|
- messaging
|
|
|
|
|
requestBody:
|
|
|
|
|
content:
|
|
|
|
|
application/json:
|
|
|
|
|
schema:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
$ref: './schemas/apitypes.yaml#/ContentTopic'
|
|
|
|
|
responses:
|
|
|
|
|
'200':
|
|
|
|
|
description: OK
|
|
|
|
|
content:
|
|
|
|
|
text/plain:
|
|
|
|
|
schema:
|
|
|
|
|
type: string
|
|
|
|
|
'4XX':
|
|
|
|
|
description: Bad request.
|
|
|
|
|
'5XX':
|
|
|
|
|
description: Unexpected error.
|
|
|
|
|
|
|
|
|
|
delete: # delete_messaging_v1_subscriptions
|
|
|
|
|
summary: Unsubscribe the messaging client from an array of content topics
|
2026-08-03 13:03:44 +02:00
|
|
|
description: Unsubscribe the messaging client from an array of content topics.
|
2026-07-16 17:22:09 +02:00
|
|
|
operationId: deleteMessagingSubscriptions
|
|
|
|
|
tags:
|
|
|
|
|
- messaging
|
|
|
|
|
requestBody:
|
|
|
|
|
content:
|
|
|
|
|
application/json:
|
|
|
|
|
schema:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
$ref: './schemas/apitypes.yaml#/ContentTopic'
|
|
|
|
|
responses:
|
|
|
|
|
'200':
|
|
|
|
|
description: OK
|
|
|
|
|
content:
|
|
|
|
|
text/plain:
|
|
|
|
|
schema:
|
|
|
|
|
type: string
|
|
|
|
|
'4XX':
|
|
|
|
|
description: Bad request.
|
|
|
|
|
'5XX':
|
|
|
|
|
description: Unexpected error.
|