MailParrot
queryaliases

Returns all aliases (inboxes) for a project.

Authentication

Required: x-api-key header or Authorization: Bearer <token>

Arguments

NameTypeDescription
projectId*ID!Project ID

GraphQL

POST to /graphql

query ListAliases($projectId: ID!) {
  aliases(projectId: $projectId) {
    id
    emailAddress
    domain
    localPart
    active
    createdAt
  }
}

Don't have an API key? Sign up to the dashboard to get one for free.

Try it