Service: Get Document Type Codes
HTTP Method: GET
https://app.myfilerunner.com/api/v1/service/getDocumentTypeCodes/{locationCode}/{filingCodeId}
Gets document type codes according to filing location and code IDs.
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/getDocumentTypeCodes/bexardccr/0
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getDocumentTypeCodes/bexardccr/0
fetch("https://app.myfilerunner.com/api/v1/service/getDocumentTypeCodes/bexardccr/0", {
"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": "10073",
"name": "Contains sensitive data"
},
{
"code": "10074",
"name": "Does not contain sensitive data"
}
]
}