curl -X POST "https://app.tracklysms.com/api/v2/contacts/bulk" \
-H "X-Api-Key: trk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"contacts": [
{
"phone_number": "+14155559876",
"list_number": "+18005551234",
"use_journeys": true,
"custom_fields": {"first_name": "Jane"}
},
{
"phone_number": "+12125551000",
"list_number": "+18005551234",
"custom_fields": {"first_name": "John"}
},
{
"phone_number": "+13105558888",
"list_number": "+18005551234",
"signup_date": "2025-03-10T08:00:00Z",
"ip_address": "198.51.100.17"
}
]
}'