mirror of
https://github.com/logos-messaging/logos-delivery-rest-api.git
synced 2026-07-24 04:03:17 +00:00
17 lines
642 B
YAML
17 lines
642 B
YAML
|
|
# /messaging/v1/events/send:
|
||
|
|
get: # get_messaging_v1_events_send
|
||
|
|
summary: Poll all buffered send events
|
||
|
|
description: Returns all buffered send events grouped by request id, then clears them (evict-after-poll). Send events are buffered because REST is a poll-based surface over the interactive MessagingClient events.
|
||
|
|
operationId: getMessagingSendEvents
|
||
|
|
tags:
|
||
|
|
- messaging
|
||
|
|
responses:
|
||
|
|
'200':
|
||
|
|
description: The buffered send events, grouped by request id.
|
||
|
|
content:
|
||
|
|
application/json:
|
||
|
|
schema:
|
||
|
|
$ref: './schemas/apitypes.yaml#/SendStatusList'
|
||
|
|
'5XX':
|
||
|
|
description: Unexpected error.
|