POST CaseApi/SubmissionList
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id |
long |
Optional |
| SessionId |
Session GUID |
string |
Required |
| CaseId |
Case Id |
long |
Required |
| CaseTrackingId |
Case Tracking Id |
string |
Required |
| FilerEmailAddress |
Filer Email address |
string |
Required |
| FilterMember |
Sort Filter Member |
string |
Optional |
| FilterOperator |
Sort Filter Operator like StartsWith, Contians, IsEqualTo etc., |
string |
Optional |
| FilterValue |
Sort Filter Value |
string |
Optional |
| OrderBy |
Order By column name |
string |
Optional |
| OrderByDirection |
Order By Direction like Asc or Desc |
string |
Optional |
| PageNumber |
Page Number |
integer |
Optional |
| PageSize |
Page Size |
integer |
Optional |
Request Formats
application/json, text/json
Sample:
{
"SessionId": "d2794707-6e7a-4327-9577-021b3056a386",
"FilerEmailAddress":"sirishapettela@gmail.com",
"CaseId":14938,
"CaseTrackingId":"3c87db49-95d1-4203-8e03-287ce34d2818",
"PageNumber":0,
"PageSize":10
}
Response Information
List of submissions
| Name | Description | Type | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submissions |
List of submissions |
CaseSubmissionListInfoResponseModel | ||||||||||||||||||
|
||||||||||||||||||||
| TotalRecordCount |
Total Record Count |
int | ||||||||||||||||||
| PageNumber |
Page Number |
int | ||||||||||||||||||
| PageSize |
Page Size |
int | ||||||||||||||||||
Response Formats
application/json, text/json
Sample:
{
"Submissions": [
{
"Id": 16627,
"SubmissionId": 16627,
"EnvelopeId": "182887",
"SubmittedDate": "08/12/17 CDST",
"FilingDesc": "Affidavit of Indigency ",
"FilingTypeDesc": "eFile"
},
{
"Id": 16628,
"SubmissionId": 16628,
"EnvelopeId": "182886",
"SubmittedDate": "08/12/17 CDST",
"FilingDesc": "Affidavit of Indigency ",
"FilingTypeDesc": "eFile"
},
{
"Id": 16629,
"SubmissionId": 16629,
"EnvelopeId": "182888",
"SubmittedDate": "08/12/17 CDST",
"FilingDesc": "Counter Claim/Cross Action/Interpleader/Intervention/Third Party",
"FilingTypeDesc": "eFile"
}
],
"PageNumber": 0,
"PageSize": 10,
"TotalRecordCount": 3
}