Thank you so much. Can you show me a sample printout for the example of adding new subscribers?@barisb - I tested and it's working correctly.
To be able to use in postman you have to manually enter special headers such as:
'X-MW-PUBLIC-KEY' => publicKey,
'X-MW-TIMESTAMP' => timestamp,
View attachment 13177
Where did you get the timestamp from @laurentiu ?
Hi is there a limit of how many subscribers I can post in bulk with one API call? For some reason it is only postting 332 subscribers?
You can do this using custom code with $endpoint->createBulk(), bellow one example how you can do this:Is there any api to subscribers using csv file?
// Array with all subscribers data
$subscribers = [];
// file name, where __DIR__ = represents the directory of the current file
$file = __DIR__ . '/your_list_name.csv';
// Count how may subscribers are in array
// We want to add 100 subscribers per batch
$counter = 0;
if (($handle = fopen($file, "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
for ($c=0; $c < $num; $c++) {
$email = $data[$c];
$subscriber = [
'EMAIL' => $email,
];
array_push($subscribers, $subscriber);
// We want to add only 100 subscribers per batch
if ($counter >= 100) {
$response = $endpoint->createBulk('sy349pvrhha89', $subscribers);
// Print response status
echo $response->body['status'] . PHP_EOL;
// empty the array to have a new 100 subscribers
$subscribers = [];
// Reset counter
$counter = 0;
}
$counter++;
}
}
fclose($handle);
}
Is there any api to create subscribers using csv file?
Or you can use the queue importer, you have plenty options.ou can do this using custom code with $endpoint->createBulk(),