Reports.MemoOfCost
Try it in Swagger
Endpoint
- Method:
POST
- Route:
Reports/MemoOfCost
- Authentication:
Authorize
Request Schema
| Header |
Required |
Notes |
X-Api-Key |
Required when tenant is not resolved by subdomain |
Resolves the tenant/customer database. |
Authorization: Bearer {token} |
Required for authorized endpoints |
Get a token from Auth/Token or Session/Create. |
JSON Body
Body type: DisplayCostAnalysisModel
| Field |
Type |
Required |
Max Length |
Notes |
customer |
string |
Yes |
|
|
referenceNumber |
string |
Yes |
|
|
caseNumber |
string |
Yes |
|
|
Request Sample
{
"customer": "string",
"referenceNumber": "string",
"caseNumber": "string"
}
Expected Response Schema
Status Codes
| Status |
Notes |
200 OK |
Returned by the controller for this operation. |
400 Bad Request |
Validation, invalid request, invalid contact, or service/export failure. |
Success Body
Response type: IReadOnlyList<DisplayCostAnalysisDisplayDto>
| Field |
Type |
Max Length |
Notes |
fileNumber |
string |
|
|
caseNumber |
string |
|
|
workOrder |
string |
|
|
comments |
string? |
|
|
title |
string |
|
|
totalAmount |
decimal? |
|
|
Response Sample
[
{
"fileNumber": "REF-12345",
"caseNumber": "24STCV12345",
"workOrder": "C123456",
"comments": "Costs reviewed and ready for filing.",
"title": "Attorney",
"totalAmount": 123.45
}
]