Objective:
- Create a relationship on a Matter
- Add related contact to a Matter
Additional Information:
- You can add a related contact to a Matter using the relationships endpoint: https://app.clio.com/api/v4/relationships
Procedure:
- Create a POST request on the relationships endpoint
- Enter the Contact id, Matter id and the description of the relationship.
Sample:
{
"data": {
"contact": {
"id": 000000000
},
"description": "Friend",
"matter": {
"id": 000000000
}
}
}