AnnouncementService Resource
A set of end points for handling announcements of messages.
POST /v1/announcement/files/reannounce
Reannounce the provided file identifiers to the configured message queue.
media type | data type | description |
---|---|---|
application/json | array of number (JSON) | The ids of the files to reannounce. |
code | condition |
---|---|
204 | The files have been successfully reannounced. |
403 | If you don't have permission to one of the provided files. |
Example
Request
POST /v1/announcement/files/reannounce
Content-Type: application/json
[ 123, 456, 789 ]
Response
HTTP/1.1 204 No Content