Contacts
Create Contact
Contacts
Create Contact
POST
/
api
/
v1
/
contact
curl --request POST \
--url https://eazymsg.com/api/v1/contact \
--header 'Content-Type: application/json' \
--data '{
"authKey": "{{key}}",
"name": "Anil",
"email": "amsXXX@gmail.com",
"number": "XXXXXX6813",
"groupId": "GS362B"
}'
{
"code": "0x0200",
"message": "Contact Added Successfully.",
"status": "SUCCESS",
"data": {
"contactId": "CO5498A"
}
}
Body
application/json ยท object
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://eazymsg.com/api/v1/contact \
--header 'Content-Type: application/json' \
--data '{
"authKey": "{{key}}",
"name": "Anil",
"email": "amsXXX@gmail.com",
"number": "XXXXXX6813",
"groupId": "GS362B"
}'
{
"code": "0x0200",
"message": "Contact Added Successfully.",
"status": "SUCCESS",
"data": {
"contactId": "CO5498A"
}
}