I have been using a custom field called "status" (type is text_area) to track the status of a bunch of cases I have for one client. The id is 12164466. I can print a list of matters using a python script and the API. I want to add the value for the status field to the printout but am stuck. I am a practicing lawyer (just me and two paralegals). Coding is a new hobby to me. I am just now figuring out how to access information in the API and hope to develop some scripts to automate some tedious tasks.
On a related note, I would be willing to pay someone to work with me to help automate some tasks. I have hundreds of property damage claims sent to me from a utility company. The claim files are all structured the same in a zip file. I would like to extract information from the zip files and use it to create a new matter and populate custom fields. I would also like to use the status field to automate the completion of a status update spreadsheet to the client.
This is what I have to print the matter list. I'm not sure what to do from here.
headers = {
'Authorization': f"Bearer {access_token}",
'Content-Type': 'application/json'
}
response = requests.get('https://app.clio.com/api/v4/matters.json', headers=headers)
response_json = response.json()
# Print the list of matters
print("Matter list:")
for matter in response_json['data']:
print(f"{matter['display_number']}")