Service: Get Added Contacts
HTTP Method: GET
https://app.myfilerunner.com/api/v1/service/getAddedContacts/{caseId}
Gets contacts added to a case.
Header parameters
Name | Type | Description |
---|---|---|
client-token Required | String | API key provided by MyFileRunner admin. |
Body parameters
This server request does not require body parameters.
Example request
curl -H "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" -H "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getAddedContacts/5
curl --header "client-token: api-mfr-0123456789abcdef0123456789ABCDEF" --header "content-type: Application/JSON" https://app.myfilerunner.com/api/v1/service/getAddedContacts/5
fetch("https://app.myfilerunner.com/api/v1/service/getAddedContacts/5", {
"method": "GET",
"mode": "cors",
"headers": {
"client-token": "api-mfr-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": [
{
"case_draft_id": 5,
"serviceContactId": "0054449d-b648-4d5a-ab79-93bd3c657485",
"case_party_id": null,
"firstName": null,
"lastName": null,
"firmName": null,
"email": "",
"is_deleted": 0,
"is_removed_from_filing": 0,
"fname": null,
"lname": null,
"bname": null,
"display_name": "case"
}
]
}