Service: Get Filer Type Codes
HTTP Method: GET
https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/{locationCode}
Gets filer type codes according to filing location.
Header parameters
Name | Type | Description |
---|---|---|
client-token Required | String | API key provided by MyFileRunner admin. |
Body parameters
This server request does not require body parameters.
Example request
curl -H "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" -H "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:dc51
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:dc51
fetch("https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:dc51", {
"method": "GET",
"mode": "cors",
"headers": {
"client-token": "api-mfr-0123456789abcdef0123456789ABCDEF",
"content-type": "Application/JSON",
},
"body": {
// This server request does not require body parameters.
}
}).then((response) => { response.JSON() })
.then((data) => {
//...
});
Example response
{
"success": true,
"data": [
{
"code": 106537,
"name": "Attorney"
},
{
"code": 106538,
"name": "Government Filer"
},
{
"code": 106539,
"name": "Non-Party Filer"
},
{
"code": 106540,
"name": "Pro Se Filer"
}
]
}
If there are no filer type codes in the specified court location, a N/A code is returned.
Request
curl -H "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" -H "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:cccv1
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:cccv1
fetch("https://app.myfilerunner.com/api/v1/service/getFilerTypeCodes/harris:cccv1", {
"method": "GET",
"mode": "cors",
"headers": {
"client-token": "api-mfr-0123456789abcdef0123456789ABCDEF",
"content-type": "Application/JSON",
},
"body": {
// This server request does not require body parameters.
}
}).then((response) => { response.JSON() })
.then((data) => {
//...
});
Response
{
"success": true,
"data": [
{
"code": 106536,
"name": "Not Applicable"
}
]
}