Message Broker API

Number of APIs: 4

Message Broker is a service that enables asynchronous communication in the platform, that can be used to decouple applications and services from each other.

Generic Errors

The following generic error codes might occur at any of the specified operations. Generic errors are prefixed with 'mdsp.core.generic.'.

  • 400: invalidParameter
  • 400: invalidRequestBodyProperty
  • 401: unauthorized
  • 403: forbidden
  • 404: noMatch
  • 429: tooManyRequests
  • 500: internalServerError
  1. Publishes new message to the given topic. POST {{baseUrl}}/topics/:id/sendmessage

  2. subscribers/{id}/versions/{versionId}/topics/{topicId} - Create or update a subscription to the given topic. PUT {{baseUrl}}/subscribers/:id/versions/:versionId/topics/:topicId

  3. subscribers/{id}/versions/{versionId}/topics/{topicId} - Get the subscription. GET {{baseUrl}}/subscribers/:id/versions/:versionId/topics/:topicId

  4. subscribers/{id}/versions/{versionId}/topics/{topicId} - Delete the given subscription. DELETE {{baseUrl}}/subscribers/:id/versions/:versionId/topics/:topicId