MailParrot
querywebhooks

Returns all webhooks configured for an alias. Webhooks receive events such as new messages.

Authentication

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

Arguments

NameTypeDescription
projectId*ID!-
aliasId*ID!-

GraphQL

POST to /graphql

query ListWebhooks($projectId: ID!, $aliasId: ID!) {
  webhooks(projectId: $projectId, aliasId: $aliasId) {
    id
    url
    eventTypes
    active
    createdAt
  }
}

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

Try it