Skip to main content
POST
https://app.tracklysms.com/api
/
v1
/
contacts
curl -X POST https://app.tracklysms.com/api/v1/contacts \
  -H "X-Api-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"phone": "+14155551234", "name": "John Doe"}'
{
  "success": true,
  "deprecated": true,
  "message": "This endpoint is deprecated and performs no operation."
}
Deprecated & No-Op: This endpoint is a compatibility stub that always returns success without creating anything.
This endpoint exists for API compatibility with legacy integrations. It accepts any payload but performs no actual operation.

Response

success
boolean
Always true
deprecated
boolean
Always true
message
string
Deprecation notice
curl -X POST https://app.tracklysms.com/api/v1/contacts \
  -H "X-Api-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"phone": "+14155551234", "name": "John Doe"}'
{
  "success": true,
  "deprecated": true,
  "message": "This endpoint is deprecated and performs no operation."
}

Adding Contacts

To add contacts to your account, use the Trackly SMS dashboard:
  1. Navigate to Contacts in the sidebar
  2. Click Import Contacts
  3. Upload a CSV file with phone numbers and optional fields
See Importing Contacts for detailed instructions.