Mailosaur · Example Payload

Mailosaur Create Server Example

Email TestingSMS TestingDeveloper ToolsQA AutomationCI/CDSMTPTOTPDeliverability

Mailosaur Create Server 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": "Create a new Mailosaur inbox (server)",
  "request": {
    "method": "POST",
    "url": "https://mailosaur.com/api/servers",
    "headers": {
      "Authorization": "Basic {base64(api_key:)}",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "My Test Inbox"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "a1bcdef2",
      "name": "My Test Inbox",
      "users": [],
      "messages": 0
    }
  }
}