{
"to": "6281234567890",
"contacts": [
{
"full_name": "Jhon Doe",
"organization": "WhatsPi",
"phone_number": "6281234567891"
},
{
"full_name": "Jane Doe",
"organization": "WhatsPi",
"phone_number": "6281234567892"
}
]
}
curl --location --request POST '/module/v1/message/send-contacts' \
--header 'Content-Type: application/json' \
--data-raw '{
"to": "6281234567890",
"contacts": [
{
"full_name": "Jhon Doe",
"organization": "WhatsPi",
"phone_number": "6281234567891"
},
{
"full_name": "Jane Doe",
"organization": "WhatsPi",
"phone_number": "6281234567892"
}
]
}'
{
"success": true,
"message": "Successfully",
"data": "BAE505716AA91242"
}