Download OpenAPI specification:Download
Note: The API is available in three distinct data regions: Australia (au.grow.clio.com), EU (eu.grow.clio.com) and US (grow.clio.com).
Likewise, the developer portal is available at region-specific links for the Australia, EU, and US regions.
This document assumes the US region is being used (grow.clio.com). If you're building in one of the other regions, you should adapt the links and examples as necessary.
Outlines the parameters, optional and required, used when requesting the data for all Contacts
created_since | string <date-time> Filter Contact records to those having the |
ids[] | integer <int64> Filter Contact records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
query | string Wildcard search for name, email address, or phone number matching a given string. |
updated_since | string <date-time> Filter Contact records to those having the |
{- "data": [
- {
- "clio_id": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "emails": [
- "string"
], - "id": 0,
- "matters": [
- {
- "id": 0
}
], - "name": "string",
- "phone_numbers": [
- "string"
], - "status": "Unassigned",
- "type": "Company",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
id required | integer <int64> The unique identifier for the Contact. |
{- "clio_id": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "emails": [
- "string"
], - "id": 0,
- "matters": [
- {
- "id": 0
}
], - "name": "string",
- "phone_numbers": [
- "string"
], - "status": "Unassigned",
- "type": "Company",
- "updated_at": "2019-08-24T14:15:22Z"
}
Outlines the parameters, optional and required, used when requesting the notes for a single Contact
contact_id required | integer <int64> Filters Note records by Contact. |
created_since | string <date-time> Filter ContactNote records to those having the |
ids[] | integer <int64> Filter ContactNote records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
updated_since | string <date-time> Filter ContactNote records to those having the |
{- "data": [
- {
- "body": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "subject": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
contact_id required | integer <int64> The unique identifier of the Contact to create the Note for. |
Request Body for Contact Note
required | object | ||||
|
{- "data": {
- "body": "string",
- "subject": "string"
}
}
{- "body": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "subject": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
Custom Actions are a mechanism to add a link to certain dropdowns in the Clio Grow user interface. When this link is clicked by a Grow user, a new tab opens in their browser and they are sent to the URL provided during that Custom Action's creation. Clio will attach contextual parameters to the URL to enable the integration that created the custom action to call the API afterward.
Because custom actions require an unauthorized GET request made from a user's browser, it's important to validate that a user has actually performed an action within Clio.
When a request is sent to the URL specified on the custom action, Clio includes a unique custom_action_nonce
parameter. If you send the custom_action_nonce
in your next request to the API as a query parameter, Clio will use it to validate that the user who clicked the custom action matches your oauth token request. If the nonce does not match, a 403 Forbidden error will be returned.
The nonce value is a single-use code and has an expiry of 60 seconds.
Outlines the parameters, optional and required, used when requesting the date for all CustomActions
created_since | string <date-time> Filter CustomAction records to those having the |
ids[] | integer <int64> Filter CustomAction records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
updated_since | string <date-time> Filter CustomAction records to those having the |
{- "data": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "label": "string",
- "target_url": "string",
- "ui_reference": "matters/show",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
Request Body for CustomAction
required | object | ||||||
|
{- "data": {
- "label": "string",
- "target_url": "string",
- "ui_reference": "matters/show"
}
}
{- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "label": "string",
- "target_url": "string",
- "ui_reference": "matters/show",
- "updated_at": "2019-08-24T14:15:22Z"
}
Outlines the parameters, optional and required, used when deleting the record for a single CustomAction
id required | integer <int64> The unique identifier for the CustomAction. |
{- "error": {
- "message": "string",
- "status": "string"
}
}
Outlines the parameters, optional and required, used when requesting the data for all InboxLeads
created_since | string <date-time> Filter InboxLead records to those having the |
ids[] | integer <int64> Filter InboxLead records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
query | string Wildcard search for name, email address, or phone number matching a given string. |
state required | string Enum: "ignored" "untriaged" Filter InboxLead records to those having the specified state. |
updated_since | string <date-time> Filter InboxLead records to those having the |
{- "data": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "first_name": "string",
- "id": 0,
- "last_name": "string",
- "phone_number": "string",
- "state": "ignored",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
Request Body for InboxLead
required | object | ||||||||||||||
|
{- "data": {
- "email": "string",
- "first_name": "string",
- "from_message": "string",
- "from_source": "string",
- "last_name": "string",
- "phone_number": "string",
- "referring_url": "string"
}
}
{- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "first_name": "string",
- "id": 0,
- "last_name": "string",
- "phone_number": "string",
- "state": "ignored",
- "updated_at": "2019-08-24T14:15:22Z",
- "from_message": "string",
- "from_source": "string",
- "referring_url": "string"
}
id required | integer <int64> The unique identifier for the InboxLead. |
{- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "first_name": "string",
- "id": 0,
- "last_name": "string",
- "phone_number": "string",
- "state": "ignored",
- "updated_at": "2019-08-24T14:15:22Z"
}
Outlines the parameters, optional and required, used when requesting the data for all Matters
created_since | string <date-time> Filter Matter records to those having the |
ids[] | integer <int64> Filter Matter records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
updated_since | string <date-time> Filter Matter records to those having the |
{- "data": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "description": "string",
- "clio_id": 0,
- "location": "string",
- "primary_contact": {
- "full_name": "string",
- "id": 0,
- "phone_number": "string",
- "primary_email": "string"
}, - "status": "Newly Added",
- "status_category": "intake",
- "type": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
id required | integer <int64> The unique identifier for the Matter. |
{- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "description": "string",
- "clio_id": 0,
- "location": "string",
- "primary_contact": {
- "full_name": "string",
- "id": 0,
- "phone_number": "string",
- "primary_email": "string"
}, - "status": "Newly Added",
- "status_category": "intake",
- "type": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
Outlines the parameters, optional and required, used when requesting the notes for a single Matter
matter_id required | integer <int64> Filters Note records by Matter. |
created_since | string <date-time> Filter MatterNote records to those having the |
ids[] | integer <int64> Filter MatterNote records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
updated_since | string <date-time> Filter MatterNote records to those having the |
{- "data": [
- {
- "body": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "subject": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
matter_id required | integer <int64> The unique identifier of the Matter to create the Note for. |
Request Body for MatterNote
required | object | ||||
|
{- "data": {
- "body": "string",
- "subject": "string"
}
}
{- "body": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "id": 0,
- "subject": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
Outlines the parameters, optional and required, used when requesting the data for all Users
created_since | string <date-time> Filter User records to those having the |
ids[] | integer <int64> Filter User records to those having the specified unique identifiers (maximum 50). |
page_token | string A token specifying which page to return. |
updated_since | string <date-time> Filter User records to those having the |
{- "data": [
- {
- "account": {
- "id": 0,
- "firm_name": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "first_name": "string",
- "id": 0,
- "last_name": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
{- "account": {
- "id": 0,
- "firm_name": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "first_name": "string",
- "id": 0,
- "last_name": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}