Push Templates API
Overview of push templates API methods
get
https://api.codemash.io
/:version/notifications/push/templates/:id
Get Template
.NET
Node
var client = new CodeMashClient(apiKey, projectId);
var pushService = new CodeMashPushService(client);
var response = await pushService.GetTemplateAsync(
new GetNotificationTemplateRequest
{
Id = Guid.Parse("{TEMPLATEID_ID}")
}
);
get
https://api.codemash.io
/:version/notifications/push/templates
Get Templates
.NET
var client = new CodeMashClient(apiKey, projectId);
var pushService = new CodeMashPushService(client);
var response = await pushService.GetTemplatesAsync(
new GetNotificationTemplatesRequest()
);
Last modified 3yr ago