Quick Start
Last updated
Was this helpful?
Last updated
Was this helpful?
Good to know: A quick start guide can be good to help folks get up and running with your API in a few steps. Some people prefer diving in with the basics rather than meticulously reading every page of documentation!
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can get an API key from your Settings.
To make your first request, send an authenticated request to the messages endpoint. This will send a text
message to the user.
POST
https://api.qikchat.in/v1/messages
To send a message, use the request URL and the following body parameters.
Request Example
{
"to_contact": "8080808080",
"type": "text",
"text": {
"body": "Hey There!"
}
}
QIKCHAT-API-KEY*
string
place API key
to_contact*
string
customer whatsapp number you want to send message
type*
string
text
text*
object
contains body field
A successful response includes a data object with an ID for the message sent.