MailSlurpAPI.Model.WebhookNewSmsPayload (mailslurp v15.17.22)

NEW_SMS webhook payload. Sent to your webhook url endpoint via HTTP POST when an sms is received by the phone number that your webhook is attached to. Use the SMS ID to fetch the full SMS details.

Summary

Types

@type t() :: %MailSlurpAPI.Model.WebhookNewSmsPayload{
  body: String.t(),
  eventName: String.t(),
  fromNumber: String.t(),
  messageId: String.t(),
  phoneNumber: String.t(),
  read: boolean(),
  smsId: String.t(),
  toNumber: String.t(),
  userId: String.t(),
  webhookId: String.t(),
  webhookName: String.t() | nil
}