List mail addresses
GET/mail-addresses/ /
v2
GET
mail-list-mail-addresses-for-user
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/mail-addresses/?projectId=string&search=string&forwardAddress=true&catchAll=true&autoResponder=true&mailArchive=true&limit=50&page=1&sort=address.domain&order=asc
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.mail.listMailAddressesForUser({
"queryParameters": {
"projectId": "string",
"search": "string",
"forwardAddress": true,
"catchAll": true,
"autoResponder": true,
"mailArchive": true,
"limit": 50,
"page": 1,
"sort": [
"address.domain"
],
"order": [
"asc"
]
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Mail\ListMailAddressesForUser\ListMailAddressesForUserRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ListMailAddressesForUserRequest())
->withProjectId("string")
->withSearch("string")
->withForwardAddress(true)
->withCatchAll(true)
->withAutoResponder(true)
->withMailArchive(true)
->withLimit(50)
->withPage(1)
->withSort(["address.domain"])
->withOrder(["asc"]);
$response = $client->mail()->listMailAddressesForUser($request);
var_dump($response->getBody();