mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-24 03:47:38 +02:00
34da0e5042
Requested feature for integration, see #15
2.6 KiB
2.6 KiB
Messages
List & delete messages.
List
List messages in the mailbox. Messages are returned in the order of latest received to oldest.
URL : api/v1/messages
Method : GET
Query parameters
Parameter | Type | Required | Description |
---|---|---|---|
limit | integer | false | Limit results (default 50) |
start | integer | false | Pagination offset |
Response
Status : 200
{
"total": 500,
"unread": 500,
"count": 50,
"start": 0,
"messages": [
{
"ID": "1c575821-70ba-466f-8cee-2e1cf0fcdd0f",
"Read": false,
"From": {
"Name": "John Doe",
"Address": "john@example.com"
},
"To": [
{
"Name": "Jane Smith",
"Address": "jane@example.com"
}
],
"Cc": [
{
"Name": "Accounts",
"Address": "accounts@example.com"
}
],
"Bcc": null,
"Subject": "Message subject",
"Created": "2022-10-03T21:35:32.228605299+13:00",
"Size": 6144,
"Attachments": 0
},
...
]
}
Notes
total
- Total messages in mailboxunread
- Total unread messages in mailboxcount
- Number of messages returned in requeststart
- The offset (default0
) for paginationRead
- The read/unread status of the messageFrom
- Name & Address, or null if noneTo
,CC
,BCC
- Array of Names & Address, or null if noneCreated
- Local date & time the message was receivedSize
- Total size of raw email in bytes
Delete individual messages
Delete one or more messages by ID.
URL : api/v1/messages
Method : DELETE
Request
{
"ids": ["<ID>","<ID>"...]
}
Response
Status : 200
Delete all messages
Delete all messages (same as deleting individual messages, but with the "ids" either empty or omitted entirely).
URL : api/v1/messages
Method : DELETE
Request
{
"ids": []
}
Response
Status : 200
Update individual read statuses
Set the read status of one or more messages.
The read
status can be true
or false
.
URL : api/v1/messages
Method : PUT
Request
{
"ids": ["<ID>","<ID>"...],
"read": false
}
Response
Status : 200
Update all messages read status
Set the read status of all messages.
The read
status can be true
or false
.
URL : api/v1/messages
Method : PUT
Request
{
"ids": [],
"read": false
}
Response
Status : 200