GET
/
emails
/
bulk
/
{id}
TypeScript
import Nuntly from '@nuntly/sdk';

const client = new Nuntly({
  apiKey: 'My API Key',
});

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

console.log(bulk.id);
{
  "data": {
    "id": "blk_E9usgNhRPB8n11YujfZUHMSUztadfFDYUDWBp4zxVamsF18Y",
    "kind": "bulk-email",
    "emails": [
      {
        "id": "em_01jnvnn9avq52k5mrhn1gab0ci",
        "org_id": "org_01jh6jk82zjq9deye73h0mzcaq",
        "status": "delivered",
        "status_at": "2025-03-08T20:03:04.155Z",
        "kind": "email"
      },
      {
        "id": "em_01jnvnn9avq52k5mrhn1gab0cj",
        "org_id": "org_01jh6jk82zjq9deye73h0mzcaq",
        "status": "delivered",
        "status_at": "2025-03-08T20:03:04.155Z",
        "kind": "email"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The bulk id

Response

200
application/json

A successful response

The response is of type object.