Create Contact

POST /api/v1/contacts
Body:
{
  "phone": "+1234567890",
  "name": "John Smith",
  "email": "john@example.com",
  "tags": ["customer", "vip"]
}

List Contacts

GET /api/v1/contacts

Update Contact

PATCH /api/v1/contacts/:id

Delete Contact

DELETE /api/v1/contacts/:id