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

Batch

The Batch object represents an email being sent to a specific category and multiple contacts.

This object contains the following attributes:

Field
Type
Description

id

string, core

(Read-only) A primary identifier for the batch.

href

string, core

(Read-only) A relative reference to the object.

category

object, core

Represents the category object.

account

object, core

Represents the account object.

subject

string, core

The email subject line.

body

string

The body of the message.

attachments

object

(Read-only) Represents the attachment object. Example:

Example

BATCH OBJECT
{
  "id": "MST-1234-9876-3333",
  "href": "/v1/notifications/batches/MST-1234-9876-3333",
  "category": {
    "id": "NTC-1234-9876",
    "href": "/v1/notifications/categories/NTC-1234-9876",
    "name": "Orders",
    "shortDescription": "Includes updates about order confirmations, order status updates, and related communications."
  },
  "account": {
    "id": "ACC-5131-0044",
    "href": "/accounts/accounts/ACC-5131-0044",
    "type": "Client",
    "status": "Active",
    "name": "SURFMARKET BV"
  },  
  "subject": "Order published",
  "body": "<b>Hello</b>",
}

Last updated

Was this helpful?