Google Business Messenger template for Kore.ai

Hi Everyone , I am trying to find out if there is any documentation for GBM template works with Bot dialog node , i was able to get the web/sdk channel template but if i use channel as Google business massage i get response with inappropriately . since GBM usage template ? Please help

Hello @pranay.rathor ,

For any channel, the message template is determined by whether the channel supports the message format. The same is the case for GBM.

For example: A simple message template is as below:

var message = {
“contentMessage”: {
“text”: “Hello, world!”
}
};
print(JSON.stringify(message));

Let us know if there is any specific type of content you are looking for.