curl --request POST \
--url http://localhost:3000/api/audience/{id}/add-contacts \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
"123e4567-e89b-12d3-a456-426614174000",
"123e4567-e89b-12d3-a456-426614174001"
]
}
'Add multiple contacts to an audience segment
curl --request POST \
--url http://localhost:3000/api/audience/{id}/add-contacts \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
"123e4567-e89b-12d3-a456-426614174000",
"123e4567-e89b-12d3-a456-426614174001"
]
}
'