GET api/me/userproperties/{userPropertyId}/cases/{caseId}/agencies/{agencyId}/filing-types
This method will filing types for a case based on the case type and the agency id
Requires Authorization!
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userPropertyId |
User property record id |
integer |
Required |
| caseId |
Case record id |
integer |
Required |
| agencyId |
Agency Case record id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of
CaseFilingTypeResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| IsCofESupported | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"type": "sample string 2",
"isCofESupported": true
}
text/html
Sample:
{"id":1,"type":"sample string 2","isCofESupported":true}
application/xml, text/xml
Sample:
<CaseFilingTypeResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding"> <Id>1</Id> <IsCofESupported>true</IsCofESupported> <Type>sample string 2</Type> </CaseFilingTypeResponseModel>