I’ve been trying to create a new matter using the https://app.goclio.com/api/v4/matters API call and I’m receiving a 401 Unauthorized “User is not authorized” error message.
Prior to this I created a test application and specified that it would use version 4 of the Clio API. I allowed my Clio account to give my test application access and obtained an access_token. I was able to use this access_token to successfully execute several Get requests.
When I call https://app.goclio.com/api/v4/matters with the application/json body below I get the 401 Unauthorized error
{
"data": {
"client": {
"id": 946011670
},
"status": "open",
"description": "This matter was created using the Clio API v4."
}
}
From reviewing the v4 API documentation it looks like the client id and description are the only two required pieces of data (the client id already exists in my account as a contact).
Any suggestions?