PinMX-API
  1. Message
PinMX-API
  • Email
    • Get Emails
      POST
    • Add Email
      POST
    • Update Email
      POST
    • Bind Email
      POST
    • Unbind Email
      POST
  • Message
    • Get Messages
      POST
    • Delete Message
      POST
    • Flagged Message
      POST
    • Seen Message
      POST
    • Answered Message
      POST
    • Get Folders
      POST
    • Move Message Folder
      POST
    • Get Message Detail
      POST
  1. Message

Get Messages

POST
https://open-api.pinmx.com/v1/message/list

Request

Body Params multipart/form-data

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open-api.pinmx.com/v1/message/list' \
--form 'token="token"' \
--form 'folder="Inbox"' \
--form 'random_mail_id="1731288185531836054"' \
--form 'start_time="2024-05-01"' \
--form 'end_time="2025-03-24"' \
--form 'page="1"' \
--form 'limit="10"'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "msg": "string",
    "data": {
        "list": [
            {
                "body": "string",
                "from": "string",
                "id": "string",
                "subject": "string",
                "time": "string",
                "timestamp": 0,
                "to": "string"
            }
        ],
        "total": 0
    }
}
Modified at 2025-12-22 13:06:08
Previous
Unbind Email
Next
Delete Message
Built with