Filing: Edit Case Filing
HTTP Method: PUT
https://app.myfilerunner.com/api/v1/filing/{caseId}/{id}
Applies updates to the properties of an existing filing.
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
Name |
Type |
Description |
filing_type_id
Required
|
Number |
Filing Type ID. |
description
Required
|
String |
Filing description. |
client_matter
Required
|
String |
Client matter. |
Example request
curl -H "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" -H "user-token: usr-tkn-0123456789abcdef0123456789ABCDEF" -H "content-type: Application/JSON" -d {"filing_type_id": "7222", "description": "Description", "client_matter": "Dodson15-011058"} https://app.myfilerunner.com/api/v1/filing/5/1
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "user-token: usr-tkn-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" -d {"filing_type_id": "7222", "description": "Description", "client_matter": "Dodson15-011058"} https://app.myfilerunner.com/api/v1/filing/5/1
fetch("https://app.myfilerunner.com/api/v1/filing/5/1", {
"method": "PUT",
"mode": "cors",
"headers": {
"client-token": "api-mfr-0123456789abcdef0123456789ABCDEF",
"user-token": "usr-tkn-0123456789abcdef0123456789ABCDEF",
"content-type": "Application/JSON",
},
"body": {
"filing_type_id": 7222,
"description": "Description",
"client_matter": "Dodson 15-011058"
}
}).then((response) => { response.JSON() })
.then((data) => {
//...
});
Example response
{
"success": true,
"data": []
}