DESCRIPTION
This endpoint adds a contact to a matter.
URL STRUCTURE
https://[hostname]/matter/add-contact/{matter}
METHOD
POST
HEADERS
**Authorization:**
string Base64 [email]:[key]
ARGUMENTS
Name | Type | Description |
---|---|---|
matter | int|string | Matter ID or mattercode. |
PARAMETERS
Name | Type | Description |
---|---|---|
id | int | Required if name blank. Internal ID of contact. |
name | string | Required if id blank. Exact name of contact. |
category | enum | Required. Type of relationship contact has to matter. |
sequence | int | Sequential order contact should be placed in for the matter. |
reference | string | Optional reference for contact on the matter. |
ENUMS
category
Value For API |
applicant |
inventor |
licensee |
associate_other |
associate |
client |
otherside |
othersidesol |
RETURNS
Code | Message | Status |
404 | Matter not found | Failure |
422 | List of parameters that failed validation | Failure |
404 | Contact not found | Failure |
422 | Matter Contact already exists | Failure |
200 | Contact successfully added to matter | Success |