Templates
Last updated
Last updated
POST /api/wpbox/sendtemplatemessage HTTP/1.1
Host: www.app.samwad.tech
Content-Type: application/json
Accept: */*
Content-Length: 234
{
"token": "{{token}}",
"phone": "{{phone}}",
"template_name": "{{template_name}}",
"template_language": "{{template_language}}",
"components": [
{
"type": "body",
"parameters": [
{
"type": "text",
"text": "{{name}}"
},
{
"type": "text",
"text": "{{otp}}"
}
]
}
]
}{
"success": true
}GET /api/wpbox/getTemplates?token={{token}} HTTP/1.1
Host: www.app.samwad.tech
Accept: */*
{
"status": "success",
"templates": [
{
"id": 101,
"name": "order_confirmation",
"status": "approved",
"category": "TRANSACTIONAL",
"language": "en",
"components": [
{
"type": "body",
"text": "Your order {{order_id}} has been confirmed."
}
],
"company_id": 10,
"created_at": "2024-01-15T10:22:00Z",
"updated_at": "2024-02-01T12:00:00Z"
}
]
}