MailSlurpAPI.Model.WebhookDto (mailslurp v15.17.22)

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.

Summary

Types

@type t() :: %MailSlurpAPI.Model.WebhookDto{
  basicAuth: boolean(),
  createdAt: DateTime.t() | nil,
  eventName: String.t() | nil,
  id: String.t(),
  ignoreInsecureSslCertificates: boolean() | nil,
  inboxId: String.t() | nil,
  method: String.t(),
  name: String.t() | nil,
  payloadJsonSchema: String.t(),
  phoneId: String.t() | nil,
  requestBodyTemplate: String.t() | nil,
  requestHeaders: WebhookHeaders | nil,
  updatedAt: DateTime.t(),
  url: String.t(),
  useStaticIpRange: boolean() | nil,
  userId: String.t()
}