Skip to main content
GET
/
emails
/
bulk
/
{bulkId}
JavaScript
import Nuntly from '@nuntly/sdk';

const client = new Nuntly({
  apiKey: process.env['NUNTLY_API_KEY'], // This is the default and can be omitted
});

const bulk = await client.emails.bulk.retrieve('blk_01ka8k8s80gvx9604cn9am5st4');

console.log(bulk.id);
{
  "data": {
    "id": "<string>",
    "emails": [
      {
        "id": "<string>",
        "status": "queued",
        "detail": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers Authorization: Bearer <API_KEY>

Path Parameters

bulkId
string
required

The bulk id

Example:

"blk_01ka8k8s80gvx9604cn9am5st4"

Response

200 response

data
object
required