Service: Get Sought Damage Amount
HTTP Method: GET
https://app.myfilerunner.com/api/v1/service/getDamageAmount/{locationCode}/{caseCategoryId}
Gets sought damage amount according to the location of the case.
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/getDamageAmount/bexardccr/136101
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getDamageAmount/bexardccr/136101
fetch("https://app.myfilerunner.com/api/v1/service/getDamageAmount/bexardccr/136101", {
"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": 160589,
"name": "Less than $100,000 including damages of any kind"
},
{
"code": 160590,
"name": "Less than $100,000 and non-monetary relief"
},
{
"code": 160591,
"name": "Over $100,000 but not more than $200,000"
},
{
"code": 160592,
"name": "Over $200,000 but not more than $1,000,000"
},
{
"code": 160593,
"name": "Over $1,000,000"
}
]
}