GET api/private/DailyDueDateNotification/DueDateNotification?formId={formId}&dueindays={dueindays}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
formId | integer |
Required |
|
dueindays | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Domain.Notification.DailyDueDateNotificationName | Description | Type | Additional information |
---|---|---|---|
FormId | integer |
None. |
|
IsCompleted | boolean |
None. |
|
Subject | string |
None. |
|
Body | string |
None. |
|
MessageSentTo | string |
None. |
|
Id | integer |
None. |
|
CreatedDate | date |
None. |
|
ModifiedDate | date |
None. |
|
Disabled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "FormId": 1, "IsCompleted": true, "Subject": "sample string 2", "Body": "sample string 3", "MessageSentTo": "sample string 4", "Id": 5, "CreatedDate": "2025-04-26T00:12:45.4635025Z", "ModifiedDate": "2025-04-26T00:12:45.4635025Z", "Disabled": true }
text/xml
Sample:
<DailyDueDateNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Notification"> <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/Domain.Core">2025-04-25T20:12:45.4635025-04:00</CreatedDate> <Disabled xmlns="http://schemas.datacontract.org/2004/07/Domain.Core">true</Disabled> <Id xmlns="http://schemas.datacontract.org/2004/07/Domain.Core">5</Id> <ModifiedDate xmlns="http://schemas.datacontract.org/2004/07/Domain.Core">2025-04-25T20:12:45.4635025-04:00</ModifiedDate> <Body>sample string 3</Body> <FormId>1</FormId> <IsCompleted>true</IsCompleted> <MessageSentTo>sample string 4</MessageSentTo> <Subject>sample string 2</Subject> </DailyDueDateNotification>