Aliases a email account
/api/v1/email-accounts/{account}/aliasesParameters
| Name | In | Type | Description |
|---|---|---|---|
accountrequired | path | string | The account identifier. |
Request
/api/v1/email-accounts/{account}/aliasescurl -X GET 'https://app.mailyte.com/api/v1/email-accounts/01JBT8XQ2M9WYC3K4F6R7S8T9V/aliases' \
-H 'Authorization: Bearer mk_live_YOUR_API_KEY'const response = await fetch('https://app.mailyte.com/api/v1/email-accounts/01JBT8XQ2M9WYC3K4F6R7S8T9V/aliases', {
method: 'GET',
headers: {
Authorization: 'Bearer mk_live_YOUR_API_KEY',
},
});
const { data } = await response.json();import requests
response = requests.get(
"https://app.mailyte.com/api/v1/email-accounts/01JBT8XQ2M9WYC3K4F6R7S8T9V/aliases",
headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
)
data = response.json()["data"]<?php
$response = Http::withToken('mk_live_YOUR_API_KEY')
->get('https://app.mailyte.com/api/v1/email-accounts/01JBT8XQ2M9WYC3K4F6R7S8T9V/aliases');
$data = $response->json('data');require "net/http"
require "json"
uri = URI("https://app.mailyte.com/api/v1/email-accounts/01JBT8XQ2M9WYC3K4F6R7S8T9V/aliases")
request = Net::HTTP::Get.new(uri)
request["Authorization"] = "Bearer mk_live_YOUR_API_KEY"
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(request) }Response
Success.
dataarray<object>objectstringmailbox_aliasidstringUnique identifier for the alias.
mailbox_idstringThe mailbox this alias delivers into. Retrieve it with `GET /api/v1/email-accounts/{email_account}`.
addressstringThe additional address. An alias **receives only** — it cannot be used as an SMTP login, and mail sent through it still leaves as the mailbox.
statestringactive | provisioning | failed | suspended | deletingThe same closed set, and the same ordering, as a mailbox `state`, so one branch in your code handles both. Only an `active` alias routes mail.
provisioningobjectWhat the mail server has done with this alias. Creation is asynchronous, so an alias exists here before it routes anything there.
statestringpending | provisioning | active | failed | suspended | deleting | deletedWhat the mail server has recorded for this alias, as stored. **Never null**, and not nullable: `email_aliases.provisioning_state` is NOT NULL and defaults to `pending`, and an alias is created with `pending` written explicitly. It comes from our database rather than a live call, so an unreachable mail server leaves this STALE rather than unknown — `provisioning.error` is where a failure gets named, and that one is null when there is genuinely no error. Same set and same meanings as a mailbox's `provisioning.state`.
errorstringWhy provisioning failed. null unless `state` is `failed`.
retryablebooleanTrue only while `state` is `failed`, which is the only state `POST /aliases/{alias}/retry-provisioning` accepts.
created_atstringupdated_atstring
Returned inside the standard envelope.
Errors
| Status | When |
|---|---|
401 | The API key is missing, unknown, revoked or expired. All four answer identically, on purpose: distinguishing them would confirm which keys exist. |
403 | The key is valid but may not do this: it lacks the required scope, its IP allowlist does not include you, or this endpoint does not accept API keys. |
404 | No such resource in this organization. |
422 | The request was understood but the values were not acceptable. |
429 | Too many requests, or the organization has spent its sending allowance. `Retry-After` says how long to wait. |
Every status, with what causes it and what to do, is on the error reference.