Developers are granted access to integrate JejeChat functionality into their operations, enabling them to:
• Send and Receive Messages
• Send OTP
• Send Transactional Messages
• Share Media
The API Access can be used by Financial Institutions, Real Estate Companies, Tech Companies, and Logistics/Delivery Companies
https://app.jejechat.com/api/v1/send-text?token=TOKEN_HERE&instance_id=ID&jid=JID&msg=HELLO
token = your token,
msg = your text message,
instance_id = instance ID,
jid = 919999999999@s.whatsapp.net
{
success: true,
message: "Message sent successfully!",
response: "<RESPONSE>"
}
{
success: false,
message: "<REASON>"
}
https://app.jejechat.com/api/v1/send-image?token=TERE&instance_id=ID&jid=JID&caption=CAPTION&imageurl=IMAGEURL
token = your token,
caption = your image caption message,
instance_id = instance ID,
jid = 919999999999@s.whatsapp.net,
imageurl = https://someimage.com/image.jpg
{
success: true,
message: "Message sent successfully!",
response: "<RESPONSE>"
}
{
success: false,
message: "<REASON>"
}
https://app.jejechat.com/api/v1/send-video?token=TERE&instance_id=ID&jid=JID&caption=CAPTION&videourl=VIDEOURL
token = your token,
caption = your image caption message,
instance_id = instance ID,
jid = 919999999999@s.whatsapp.net,
videourl = https://someimage.com/video.mp4
{
success: true,
message: "Message sent successfully!",
response: "<RESPONSE>"
}
{
success: false,
message: "<REASON>"
}
https://app.jejechat.com/api/v1/send-audio?token=TERE&instance_id=ID&jid=JID&audiourl=AUDIOURL
token = your token,
instance_id = instance ID,
jid = 919999999999@s.whatsapp.net,
audiourl = https://someimage.com/audio.mp3
{
success: true,
message: "Message sent successfully!",
response: "<RESPONSE>"
}
{
success: false,
message: "<REASON>"
}
https://app.jejechat.com/api/v1/send-doc?token=TERE&instance_id=ID&jid=JID&caption=CAPTION&docurl=DOCURL
token = your token,
instance_id = instance ID,
jid = 919999999999@s.whatsapp.net,
caption = your caption,
docurl = https://someimage.com/somepdf.pdf
{
success: true,
message: "Message sent successfully!",
response: "<RESPONSE>"
}
{
success: false,
message: "<REASON>"
}