For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get a summary of automated mailout statistics for specified IDs or tags.

Required permissions: Automated Mailout Management

post
Query parameters
apiTokenstringRequired

API authentication token

Body
iDsstring · uuid[]OptionalExample: 00000000-0000-0000-0000-000000000000
tagsstring[]Optional
endDatestring · date-timeOptional
startDatestring · date-timeOptional
Responses
200

OK

application/json
okbooleanRead-onlyOptional
messagestringRead-onlyOptional
wasSystemExceptionbooleanRead-onlyOptional
errorReferencestringRead-onlyOptional
post/mail/automatedmailouts/summary
POST /mail/automatedmailouts/summary?apiToken=text HTTP/1.1
Host: api.ubiquity.co.nz
Content-Type: application/json
Accept: */*
Content-Length: 140

{
  "iDs": [
    "00000000-0000-0000-0000-000000000000"
  ],
  "tags": [
    "text"
  ],
  "endDate": "2026-01-01T00:00:00.000Z",
  "startDate": "2026-01-01T00:00:00.000Z"
}
{
  "summary": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "text",
      "instances": [
        {
          "sendTime": "2026-01-01T00:00:00.000Z",
          "messageCount": 1
        }
      ]
    }
  ],
  "ok": true,
  "message": "text",
  "wasSystemException": true,
  "errorReference": "text"
}

Last updated

Was this helpful?