Filing: List Case Documents
HTTP Method: GET
https://app.myfilerunner.com/api/v1/filing/documentListCaseno/{caseNo}
Gets a list of documents associated to a case number.
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/getDocumentListCaseno/WithTwoLeadDocuments
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/getDocumentListCaseno/WithTwoLeadDocuments
fetch("https://app.myfilerunner.com/api/v1/filing/getDocumentListCaseno/WithTwoLeadDocuments", {
"method": "GET",
"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": [
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_0",
"link": "new\/875\/50719ccc-a5fe-44b4-8104-08c0f37ae77f\/25.pdf_1",
"name": "25.pdf_1"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_1",
"link": "new\/875\/a3a0e4f9-02a8-4427-9c20-a4b2c4eb6f19\/30.pdf_1",
"name": "30.pdf_1"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_2",
"link": "new\/8750\/1667f2fe-54d6-418f-9169-ee1c2e8aae8f\/2.pdf_1",
"name": "2.pdf_1"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_3",
"link": "new\/8751\/a1bcc79a-b35b-474b-a0a5-536caa457fc9\/1.pdf",
"name": "1.pdf"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_4",
"link": "new\/8751\/a1bcc79a-b35b-474b-a0a5-536caa457fc9\/1.pdf_0",
"name": "1.pdf_0"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_5",
"link": "new\/8751\/a1bcc79a-b35b-474b-a0a5-536caa457fc9\/15.pdf",
"name": "15.pdf"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_6",
"link": "new\/8751\/a1bcc79a-b35b-474b-a0a5-536caa457fc9\/15.pdf_0",
"name": "15.pdf_0"
},
{
"date": "2018-09-18T09:24:52",
"id": "file_cabinet_7",
"link": "new\/8751\/a1bcc79a-b35b-474b-a0a5-536caa457fc9\/copy_1_15.pdf_0",
"name": "15.pdf_0"
},
{
"date": "2018-09-18T09:43:44",
"id": "file_cabinet_8",
"link": "new\/876\/41b2f88f-69af-4141-bae7-d0127e575781\/40.pdf_0",
"name": "40.pdf_0"
},
{
"date": "2018-09-18T09:43:44",
"id": "file_cabinet_9",
"link": "new\/876\/41b2f88f-69af-4141-bae7-d0127e575781\/copy_1_40.pdf_0",
"name": "40.pdf_0"
},
{
"date": "2018-09-19T05:46:19",
"id": "file_cabinet_10",
"link": "new\/942\/d5902df0-6f34-48c0-b203-eb5efb0a5741\/20.pdf_0",
"name": "20.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_11",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/Illustration (7)_1.pdf_0",
"name": "Illustration (7)_1.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_12",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/copied_reponse.pdf_0",
"name": "copied_reponse.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_13",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/copy_1_Illustration (7)_1.pdf_0",
"name": "Illustration (7)_1.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_14",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/copy_1_copied_reponse.pdf_0",
"name": "copied_reponse.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_15",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/copy_1_original_request.pdf_0",
"name": "original_request.pdf_0"
},
{
"date": "2018-10-03T09:29:15",
"id": "file_cabinet_16",
"link": "new\/1288\/7d912d7f-6543-4d37-9935-2720808ef18e\/original_request.pdf_0",
"name": "original_request.pdf_0"
}
]
}