POST AccountantTask/GetTasksForSpecificDate
Gets a list Accountant Tasks for the specified date.
Request Information
This method supports OData queries.
URI Parameters
None.
Body Parameters
The request.
Accountant Task Request Model| Name | Type | Additional information | Description |
|---|---|---|---|
| Date | date |
None. |
|
| CompanyId | nullable integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Date": "2025-11-05",
"CompanyId": 1
}
Response Information
Resource Description
This collection is wrapped in a paging response object.
Paging response of Accountant Task| Name | Type | Additional information | Description |
|---|---|---|---|
| TotalResults | integer |
None. |
|
| ReturnedResults | integer |
None. |
|
| Results | Collection of Accountant Task |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalResults": 1,
"ReturnedResults": 2,
"Results": [
{
"AccountantTaskRecurrenceId": 1,
"CompanyId": 2,
"CompanyName": "sample string 3",
"UserId": 4,
"Name": "sample string 5",
"Notes": "sample string 6",
"StatusType": 7,
"ReminderType": 8,
"ReminderDaysBefore": 1,
"AutomaticallyChangeStatusWhenStart": true,
"NotificationDate": "2025-11-05",
"Notified": true,
"StartDate": "2025-11-05",
"EndDate": "2025-11-05",
"Duration": 1,
"ID": 13
},
{
"AccountantTaskRecurrenceId": 1,
"CompanyId": 2,
"CompanyName": "sample string 3",
"UserId": 4,
"Name": "sample string 5",
"Notes": "sample string 6",
"StatusType": 7,
"ReminderType": 8,
"ReminderDaysBefore": 1,
"AutomaticallyChangeStatusWhenStart": true,
"NotificationDate": "2025-11-05",
"Notified": true,
"StartDate": "2025-11-05",
"EndDate": "2025-11-05",
"Duration": 1,
"ID": 13
}
]
}