List mail addresses belonging to a Project
GET/projects/ {projectId}/ mail-addresses/ 
v2
GET
mail-list-mail-addresses
Request
Responses
Usage examples
- cURL
 - JavaScript SDK
 - PHP SDK
 
$ curl \
    --fail \
    --location \
    -H "Authorization: Bearer $MITTWALD_API_TOKEN" \
    https://api.mittwald.de/v2/projects/string/mail-addresses?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.listMailAddresses({
  "projectId": "string",
  "queryParameters": {
    "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\ListMailAddresses\ListMailAddressesRequest;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ListMailAddressesRequest(
  projectId: "string"
))
  ->withSearch("string")
  ->withForwardAddress(true)
  ->withCatchAll(true)
  ->withAutoResponder(true)
  ->withMailArchive(true)
  ->withLimit(50)
  ->withPage(1)
  ->withSort(["address.domain"])
  ->withOrder(["asc"]);
$response = $client->mail()->listMailAddresses($request);
var_dump($response->getBody();