The send command sends a text or JSON data message to the Event Hub and queues it at the end.

JSON Input Data Format
{
    "id": string,
    "postdata": string
}
id * Specifies the ID of the Event Hub.
postdata * Specifies the text or JSON data to send.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "payload": "The process was successfully completed"
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}