GET api/v1/notifications/templates/{transportMediaId}?eventIds={eventIds}

Get all Notification Templates by NotificationEventId.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
transportMediaId

integer

Required

eventIds

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of NotificationTemplateReturnModel
NameDescriptionTypeAdditional information
NotificationTemplateId

integer

None.

NotificationEventId

integer

None.

TransportTypeId

integer

None.

TenantId

string

None.

Name

string

None.

Template

string

None.

CreatedOnUtc

date

None.

Active

boolean

None.

NotificationCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "NotificationTemplateId": 1,
    "NotificationEventId": 2,
    "TransportTypeId": 3,
    "TenantId": "sample string 4",
    "Name": "sample string 5",
    "Template": "sample string 6",
    "CreatedOnUtc": "2026-01-02T21:51:11.5513103-06:00",
    "Active": true,
    "NotificationCode": "sample string 9"
  },
  {
    "NotificationTemplateId": 1,
    "NotificationEventId": 2,
    "TransportTypeId": 3,
    "TenantId": "sample string 4",
    "Name": "sample string 5",
    "Template": "sample string 6",
    "CreatedOnUtc": "2026-01-02T21:51:11.5513103-06:00",
    "Active": true,
    "NotificationCode": "sample string 9"
  }
]