DESCRIPTION

This endpoint gets the contact information associated with a case. 

URL STRUCTURE

https://[hostname]/matter/get-contacts/{matterId:[0-9]+}

METHOD

GET

HEADERS

**Authorization:**    string Base64       [email]:[key]

ARGUMENTS

NameTypeDescription
matterIdintEquinox internal reference for the matter


RETURNS

Sample response:

[
{
  "applicant": [
      {
          "mcid": "201",
          "cid": "44",
          "name": "Tom Wilford",
          "formalname": "Thomas Wilford",
          "address": "",
          "nationality": "GB",
          "email": "[email protected]",
          "phone": "097328429554",
          "type": "1",
          "cc": null,
          "entity": "Micro"
      }
  ],
  "inventor": [],
  "licensee": [
      {
          "mcid": "204",
          "cid": "663",
          "name": "Ms B Green",
          "formalname": "Bee Green",
          "address": "",
          "nationality": "",
          "email": "",
          "phone": "",
          "type": "0",
          "cc": null,
          "entity": ""
      }
  ],
  "client_correspondence": [],
  "client_billing": [],
  "client_renewal_correspondence": [],
  "client_renewal_billing": [],
  "associate": [],
  "otherside_solicitor": [],
  "otherside_client": []
}
]