Create Subscribers in Bulk
Create multiple subscribers at once within a specific list using their email and any optional custom fields. Efficient for large list imports or API-driven syncs.
📥 Create Subscribers in Bulk
🔹 HTTP Request
POST API-URL/lists/LIST-UNIQUE-ID/subscribers/bulk🔸 URL Segments
Segment
Required
Description
📤 POST Parameters
Parameter
Type
Required
Description
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// ADD SUBSCRIBERS IN BULK
$response = $endpoint->createBulk('LIST-UNIQUE-ID', [
[
'EMAIL' => '[email protected]',
'FNAME' => 'Alex',
'LNAME' => 'Doe'
],
[
'EMAIL' => '[email protected]',
'FNAME' => 'Mia',
'LNAME' => 'Stone'
],
[
'EMAIL' => '[email protected]',
'FNAME' => 'Noah',
'LNAME' => 'Lee'
]
]);
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';📦 Sample JSON Response
Last updated