MailParrot
querywebhookLogs

Returns the delivery history for a webhook (success and failure attempts).

Authentication

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

Arguments

NameTypeDescription
projectId*ID!-
aliasId*ID!-
webhookId*ID!-

GraphQL

POST to /graphql

query WebhookLogs($projectId: ID!, $aliasId: ID!, $webhookId: ID!) {
  webhookLogs(projectId: $projectId, aliasId: $aliasId, webhookId: $webhookId) {
    id
    eventType
    url
    responseStatus
    durationMs
    success
    error
    createdAt
  }
}

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

Try it