Mailosaur · Example Payload

Mailosaur Get Otp Example

Email TestingSMS TestingDeveloper ToolsQA AutomationCI/CDSMTPTOTPDeliverability

Mailosaur Get Otp Example is an example object payload from Mailosaur, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "Retrieve the current OTP for a virtual security device",
  "request": {
    "method": "GET",
    "url": "https://mailosaur.com/api/devices/dev_xyz789/otp",
    "headers": {
      "Authorization": "Basic {base64(api_key:)}"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "code": "123456",
      "expires": "2026-06-13T10:00:30.000Z"
    }
  }
}