Skip to content

Returns all mails from mailbox.

GET
/api/mailbox/all/{mailboxId}/{folderId}

Authorizations

api_key

Requests manipulating data need to supply a CSRF token

TypeAPI Key (header: X-CSRF-Token)

Parameters

Path Parameters

mailboxId*
Typestring
Required
Pattern"\\d+"
folderId*
Typestring
Required

Query Parameters

page
Typestring
Default0
pageSize
Typestring
Default50

Responses

Success

application/json
JSON
[
{
"id": -1,
"mailboxId": -1,
"mailboxFolder": -1,
"from": {
"mailbox": "string",
"hostname": null,
"name": null,
"address": "string"
},
"time": "string",
"subject": "",
"body": "string",
"bodyHtml": "string",
"isRead": false,
"isAnswered": false
}
]

Playground

Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python