curl --request POST \
--url https://api.vooma.ai/v0/contacts/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"carrierId": "<string>",
"customerId": "<string>",
"email": "<string>",
"phone": "<string>",
"name": "<string>"
}
]
}
'{
"contacts": [
{
"carrierId": "<string>",
"customerId": "<string>",
"email": "<string>",
"phone": "<string>",
"name": "<string>",
"id": "<string>"
}
]
}curl --request POST \
--url https://api.vooma.ai/v0/contacts/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"carrierId": "<string>",
"customerId": "<string>",
"email": "<string>",
"phone": "<string>",
"name": "<string>"
}
]
}
'{
"contacts": [
{
"carrierId": "<string>",
"customerId": "<string>",
"email": "<string>",
"phone": "<string>",
"name": "<string>",
"id": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.