Check the api reference docs here to know about all available methods

Wapi.go SDK allows you to manage your business account message templates with ease. You can manage your business account message templates by using the methods and sub-business client available in the SDK. Here are some of the features that you can do with the SDK:

Fetch All Message Templates

client.Business.Template.FetchAll()
Check the api reference docs here to know about this method

Fetch Message Template by ID

client.Business.Template.Fetch("<template_id>")
Check the api reference docs here to know about this method

Fetch Analytics of Message Templates

Check the api reference docs here to know about this method
client.Business.Template.FetchAnalytics()

Fetch Performance Analytics of Message Templates

Check the api reference docs here to know about this method
client.Business.Template.FetchPerformanceAnalytics()
Check the api reference docs here to know about this method

Create New Message Template

client.Business.Template.Create(manager.WhatsappMessageTemplateCreateRequestBody{})
Check the api reference docs here to know about this method

Update Existing Message Template

client.Business.Template.Update("<template_id>", manager.WhatsAppBusinessAccountMessageTemplateUpdateRequestBody{})
Check the api reference docs here to know about this method

Delete Message Template

client.Business.Template.Delete("<template_id>")
Check the api reference docs here to know about this method