Request
Body Params multipart/form-data
Request samples
curl --location --request POST 'https://domain-open-api.getmx.com/v1/message/detail' \
--form 'token="token"' \
--form 'folder="Inbox"' \
--form 'mail_id="12345678"' \
--form 'message_id="12345678"'
Responses
application/json {
"code": 0,
"msg": "string",
"data": {
"list": [
{
"body": "string",
"from": "string",
"id": "string",
"subject": "string",
"time": "string",
"timestamp": 0,
"to": "string",
"plain_text": "string",
"attachments": "string"
}
],
"total": 0
}
}
Modified at 2024-12-03 00:49:31