MailSlurpAPI.Model.WebhookDto (mailslurp v15.13.16)
Representation of a webhook for an inbox. The URL specified will be using by MailSlurp whenever an email is received by the attached inbox. A webhook entity should have a URL that points to your server. Your server should accept HTTP/S POST requests and return a success 200. MailSlurp will retry your webhooks if they fail. See https://api.mailslurp.com/schemas/webhook-payload for the payload schema.
Link to this section Summary
Link to this section Types
@type t() :: %MailSlurpAPI.Model.WebhookDto{ basicAuth: boolean(), createdAt: DateTime.t() | nil, eventName: String.t() | nil, id: String.t(), inboxId: String.t() | nil, method: String.t(), name: String.t() | nil, payloadJsonSchema: String.t(), phoneId: String.t() | nil, requestHeaders: WebhookHeaders | nil, updatedAt: DateTime.t(), url: String.t(), userId: String.t() }