Creating a Template
POST
https://gateway.lipachat.com/api/v1/template/PHONE_NUMBER
Headers
Content-Type
application/json
apiKey
Body
name
string
Name of template
language
string
Language code e.g en
category
string
Accepted values are: MARKETING, UTILITY or AUTHENTICATION.
component.header.format
string
Accepted values are: TEXT, IMAGE, VIDEO, DOCUMENT
component.header.text
string
Text to be sent on header
component.header.example
string
Should be present if text above has a variable.
component.body.text
string
Body text, accepts variables e.g Hello {{1}}, your balance is {{2}}
component.body.examples
array
Should match number of variables passed in text. For the example above it should be ['John', '2000']
component.footer.text
string
Optional footer text.
component.buttons[0].type
string
Accepted values are: PHONE_NUMBER, URL or QUICK_REPLY.
component.buttons[0].text
string
Text on button above.
component.buttons[0].phoneNumber
string
Should be passed if button type passed is PHONE_NUMBER.
component.buttons[0].url
string
Should be passed if button type passed is URL.
component.buttons[0].example
string
Applies for PHONE_NUMBER and URL.
component.header, component.footer, component.buttons objects are optional.
Sample Requests:
Response
Uploading Template media
When creating a template with media on the header, you should first call the endpoint below to upload media then use the id returned to create the message template.
POST
https://gateway.lipachat.com/api/v1/template/upload/file
Headers
Content-Type
multipart/form-data
apiKey
Body
file
file
Image, video or document.
Response
Last updated