curl -X POST https://api.vozagent.ai/v1/contacts \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "first_name": "John", "last_name": "Doe", "phone_number": "+15551234567", "email": "john@example.com", "company": "Acme Inc" }'
{ "id": "c1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6", "first_name": "John", "last_name": "Doe", "email": "john@example.com", "phone_number": "+15551234567", "company": "Acme Inc", "tags": [], "created_at": "2024-01-15T09:30:00Z", "updated_at": "2024-01-15T09:30:00Z" }
Create a new contact.
201