Authentication

Authorization: Bearer YOUR_API_KEY

Create Contact

POST /api/v1/contacts

{
 "name":"John Doe",
 "phone":"919999999999"
}

Send Message

POST /api/v1/messages

{
 "contact_id":123,
 "message":"Hello"
}