Filing: Get Case Filings

HTTP Method: GET

https://app.myfilerunner.com/api/v1/filing/getList/{caseId}

Returns a view listing the filings associated to a case.

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/getList/5

            

Example response

            [
        {
            "success": true,
            "data": [
                {
                    "id": 1,
                    "case_draft_id": 5,
                    "filing_type_id": 7222,
                    "description": "Original Petition",
                    "client_matter": "Durn",
                    "clerk_instructions": "No message at this time",
                    "prilimCopy": "",
                    "courtesyCopy": "",
                    "created_at": "2013-11-07 20:55:40",
                    "updated_at": "2013-11-07 20:55:40",
                    "deleted_at": null,
                    "filing_id": null,
                    "filing_type": {
                        "id": 1600770167,
                        "location_code": "denton:dc",
                        "code": 7222,
                        "name": "Original Petition/Application",
                        "case_category_id": 0,
                        "case_type_id": 0,
                        "filing_type": "Both",
                        "iscourtuseonly": 1,
                        "fee": "",
                        "civilclaimamount": "Not Available",
                        "probateestateamount": "Not Available",
                        "useduedate": 0,
                        "efspcode": "",
                        "isproposedorder": 0,
                        "amountincontroversy": "Not Available",
                        "excludecertificateofservice": 0,
                        "iswaiverrequest": 0
                    },
                    "optionalServices": [],
                    "party_filing": [],
                    "filing_document": [
                        {
                            "filing_data_id": 1,
                            "file_cabinet_id": 2,
                            "clerk_instructions": "",
                            "id": 1,
                            "component_code": 0,
                            "security_type": 7588,
                            "file_desc": "",
                            "is_lead": 1,
                            "serial_id": 0,
                            "document_id": null,
                            "is_redacted": 0,
                            "file_cabinet": {
                                "id": 2,
                                "user_id": 8,
                                "file_name": "Deans&Lyons Billing Agreement1.pdf",
                                "hash_name": "358e247296f4ed1520b02a9a82c905b8a767fe4b.pdf",
                                "file_size": 138246,
                                "document_type_id": "",
                                "created_at": "2013-11-07 20:55:27",
                                "updated_at": "2013-11-07 20:55:27",
                                "deleted_at": null,
                                "is_text_searchable": 1,
                                "old_hash_key_bkp": null,
                                "document_id": null,
                                "is_redacted": 0
                            }
                        }
                    ],
                    "optional_services": []
                }
            ]
        }
    ]