Filing: Delete Case Filing
HTTP Method: DELETE
https://app.myfilerunner.com/api/v1/filing/{caseId}/{id}
Deletes a filing by ID.
Header parameters
Name | Type | Description |
---|---|---|
client-token Required | String | API key provided by MyFileRunner admin. |
user-token Required | String | Session token for the user obtained on login. |
Body parameters
This server request does not require body parameters.
Example request
curl -H "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" -H "user-token: usr-tkn-0123456789abcdef0123456789ABCDEF" -H "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/filing/delete/5/1
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "user-token: usr-tkn-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/filing/delete/5/1
fetch("https://app.myfilerunner.com/api/v1/filing/delete/5/1", {
"method": "DELETE",
"mode": "cors",
"headers": {
"client-token": "api-mfr-0123456789abcdef0123456789ABCDEF",
"user-token": "usr-tkn-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": []
}