MQTT1

FOR SENDING MESSAGE

MQTT Response Format:

{
  "type": "text",
  "data": {
    "content": "Message to send cloud printer",
    "timestamp": "2025-03-25T00:00:00.000Z"
  }
}
            

Raw Data (Editable):

FOR IMAGE UPLOAD

MQTT Response Format:

{
  "type": "image",
  "data": {
    "filename": "example.jpg",
    "filesize": 0,
    "filetype": "image/jpeg",
    "url": "http://example.com/uploads/images/example.jpg",
    "timestamp": "2025-03-25T00:00:00.000Z"
  }
}
          

Raw Data (Editable):

FOR PDF UPLOAD

MQTT Response Format:

{
  "type": "pdf",
  "data": {
    "filename": "document.pdf",
    "filesize": 0,
    "filetype": "application/pdf",
    "url": "http://example.com/uploads/pdfs/document.pdf",
    "timestamp": "2025-03-25T00:00:00.000Z"
  }
}
          

Raw Data (Editable):

FOR JSON UPLOAD

MQTT Response Format:

{
  "type": "json",
  "data": {
    "content": {
      "employee": {
        "name": "sonoo",
        "salary": 56000,
        "married": true
      }
    },
    "timestamp": "2025-03-25T00:00:00.000Z"
  }
}
          

Raw Data (Editable):

FOR XML UPLOAD

MQTT Response Format:

{
  "type": "xml",
  "data": {
    "content": "\n\n  Tove\n  Jani\n  Reminder\n  Don't forget me this weekend!\n",
    "timestamp": "2025-03-25T00:00:00.000Z"
  }
}
          

Raw Data (Editable):