Skip to main content

Service API v2.1.5

Fixed issue where messages, that should be send to other Services, were not send via our asynchronous Queue.
Which means that if the receiving Service is "slow", your api call would be slow aswell.

Example:
POST /users/{userId}/messages sends a message to the Client and connected Services.
If the connected Service is slow and responds after 1 second, your POST /users/{userId}/messages call would take ~ 1 second.

Now it doesn't matter if the connected Service is slow, because POST /users/{userId}/messages will put the message into a Queue which sends the message asynchronous to the connected Service. Resulting in your api call only taking a couple ms.

More info about the Queuing mechanism