curl --location --request POST 'https://domain-open-api.cuiqiu.com/v1/message/list' \ --form 'token=""' \ --form 'folder="Inbox"' \ --form 'mail_id="12345678"' \ --form 'start_time="2024-05-01"' \ --form 'end_time="2025-03-24"' \ --form 'page="1"' \ --form 'limit="10"' \ --form 'keyword="关键词"' \ --form 'body="内容"'
{ "code": 0, "msg": "string", "data": { "list": [ { "from": "string", "id": "string", "subject": "string", "time": "string", "timestamp": 0, "to": "string" } ], "total": 0 } }