GET api/Notification_Config/{id}
Get Currency by provided ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
notify_config_content_dcName | Description | Type | Additional information |
---|---|---|---|
Noti_ConfigId | integer |
None. |
|
ModuleTrigger | string |
None. |
|
OperationTrigger | string |
None. |
|
SendEmail | boolean |
None. |
|
SendInApp | boolean |
None. |
|
IsBulk | boolean |
None. |
|
IsActive | boolean |
None. |
|
Email_TemplateId | integer |
None. |
|
InApp_TemplateId | integer |
None. |
|
NotifyRoleGroups | string |
None. |
|
NotifySpecificRoles | string |
None. |
|
CreatedBy | integer |
None. |
|
LastModifiedBy | integer |
None. |
|
IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Noti_ConfigId": 1, "ModuleTrigger": "sample string 1", "OperationTrigger": "sample string 2", "SendEmail": true, "SendInApp": true, "IsBulk": true, "IsActive": true, "Email_TemplateId": 1, "InApp_TemplateId": 1, "NotifyRoleGroups": "sample string 3", "NotifySpecificRoles": "sample string 4", "CreatedBy": 1, "LastModifiedBy": 1, "IsDeleted": true }
application/xml, text/xml
Sample:
<notify_config_content_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <CreatedBy>1</CreatedBy> <Email_TemplateId>1</Email_TemplateId> <InApp_TemplateId>1</InApp_TemplateId> <IsActive>true</IsActive> <IsBulk>true</IsBulk> <IsDeleted>true</IsDeleted> <LastModifiedBy>1</LastModifiedBy> <ModuleTrigger>sample string 1</ModuleTrigger> <Noti_ConfigId>1</Noti_ConfigId> <NotifyRoleGroups>sample string 3</NotifyRoleGroups> <NotifySpecificRoles>sample string 4</NotifySpecificRoles> <OperationTrigger>sample string 2</OperationTrigger> <SendEmail>true</SendEmail> <SendInApp>true</SendInApp> </notify_config_content_dc>