Section timestamp shows 01/20/1970 02:57 AM everytime
Description
In a section in the body of a chatbot message, I have set ts to 1632461088 (09/24/2021 10:54 AM) but the result shown in zoom shows 01/20/1970 02:57 AM.
Error
No errors happen, it just shows the wrong timestamp.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
Chatbot
Which Endpoint/s?
POST /im/chat/messages
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Send a POST request to https://api.zoom.us/v2/im/chat/messages with the following JSON:
{
"robot_jid": "{{ robot_jid }}",
"to_jid": "{{ to_jid }}",
"account_id": "{{ account_id }}",
"is_markdown_support": false,
"content": {
"body": [
{
"type": "section",
"sections": [
{
"type": "message",
"text": "hi",
"editable": false
},
{
"type": "fields",
"items": [
{
"key": "this is in a section",
"value": " ",
"short": false,
"editable": false
},
{
"key": "Kekw",
"value": " ",
"short": false,
"editable": false
}
]
}
],
"sidebar_color": "#0",
"ts": 1632461088,
"footer": "lol",
"footer_icon": "https://cdn.discordapp.com/avatars/852788943229288449/2af4ad49aa5551a41453487a8ca2c3f3.webp?size=256"
}
]
}
}
and headers {"Authorization": "Bearer {{ access_token }}"}
Screenshots (If applicable)