Filing: Create Case Filing

HTTP Method: POST

https://app.myfilerunner.com/api/v1/filing/

Creates a new filing with the information provided in the parameters.

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": "ClientMatter12-345678"} https://app.myfilerunner.com/api/v1/filing

            

Example response

            {
    "success": true,
    "data": []
}