POST api/Report/ReportCardViewAsync
Request Information
URI Parameters
None.
Body Parameters
ReportCardViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BatchID | string |
None. |
|
| branchID | integer |
None. |
|
| SelectedDate | date |
None. |
|
| DollarLimits | decimal number |
None. |
|
| MaxJobsCount | integer |
None. |
|
| AssignModeCode | integer |
None. |
|
| MinimumClusterPay | decimal number |
None. |
|
| AllowOneBigJobOnly | boolean |
None. |
|
| InstallersIDs | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BatchID": "sample string 1",
"branchID": 2,
"SelectedDate": "2026-01-12T22:25:06.5399145+00:00",
"DollarLimits": 4.1,
"MaxJobsCount": 5,
"AssignModeCode": 6,
"MinimumClusterPay": 7.1,
"AllowOneBigJobOnly": true,
"InstallersIDs": [
1,
2
]
}
application/xml, text/xml
Sample:
<ReportCardViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/INSCHEDULER_WEB_API.Models.Report">
<AllowOneBigJobOnly>true</AllowOneBigJobOnly>
<AssignModeCode>6</AssignModeCode>
<BatchID>sample string 1</BatchID>
<DollarLimits>4.1</DollarLimits>
<InstallersIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</InstallersIDs>
<MaxJobsCount>5</MaxJobsCount>
<MinimumClusterPay>7.1</MinimumClusterPay>
<SelectedDate>2026-01-12T22:25:06.5399145+00:00</SelectedDate>
<branchID>2</branchID>
</ReportCardViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |