### Folder Payload Example Source: https://docs.developers.clio.com/clio-manage/api-reference This is an example of the JSON payload structure for creating or updating a folder. It includes fields for document categorization, external properties, folder name, parent folder, and restoration options. ```json { "data": { "document_category": { "id": 0 }, "external_properties": [ { "id": 0, "name": "string", "value": "string", "_destroy": true } ], "name": "string", "parent": { "id": 0, "type": "Folder" }, "restore": true } } ``` -------------------------------- ### Get Firm Name for Current User Source: https://docs.developers.clio.com/clio-manage/api-reference Example GET request to retrieve the current user's account name. Use the 'fields' query parameter to specify the 'account.name' field. ```http GET /api/v4/users/who_am_i?fields=account{name} ``` -------------------------------- ### OpenAPI Configuration Example Source: https://docs.developers.clio.com/openapi.json A sample configuration object demonstrating various settings for text, CSS styling, and display options within the OpenAPI system. This includes settings for statement of accounts, remittance titles, and table rows. ```json config = { "show": { "statement_of_accounts_summary": "left" "statement_of_accounts_note": true, "footer_invoice_payable": true, "footer_invoice_memo": true, "payment_profile_no_grace_period": true, "payment_profile_grace_period": true, "payment_profile_discount": true, "payment_profile_interest": true, "interest_headings_order": ["interest_type"," interest_date", "interest_details_description", "interest_total"] }, "text": { "statement_of_accounts_note": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_payable": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_memo": "{{bill_memo}}", "payment_profile_no_grace_period": "Payment is due upon receipt.", "payment_profile_grace_period": "Please pay within {{grace_period}}.", "payment_profile_discount": "{{discount_rate}}% discount will be applied if payment is received within {{discount_period}}.", "payment_profile_interest": "{{interest_rate}}% {{interest_type}} annual interest will be charged every {{interest_period}}.", }, "css": { "statement_of_accounts_title": { "color": "#00cc00", "font-family": "Times New Roman", "font-size": "0.875em", "background-color": "#ccff99", "border-color": "#0033ff", "border-style": "dotted", "border-width": "thick" }, "remittance_title": { "color": "#00ff00", "background-color": "None", "border-color": "#0033cc", "border-width": "medium", "border-style": "dotted", "font-family": "Arial", "font-size": "1.5em" } } } ``` -------------------------------- ### Get Custom Field Endpoint Source: https://docs.developers.clio.com/clio-manage/api-reference This example demonstrates how to construct a GET request to retrieve a specific custom field by its ID. You can optionally specify fields to return and use conditional headers. ```http GET /api/v4/custom_fields/{id}.json Host: app.clio.com I-MODIFIED-SINCE: Tue, 15 Nov 1994 12:45:26 GMT IF-NONE-MATCH: "some-etag-value" X-API-VERSION: 3 ``` -------------------------------- ### Bill Theme Configuration Example Source: https://docs.developers.clio.com/openapi.json A sample configuration object demonstrating how to set display options, customize text, and apply CSS styles for various bill elements. This includes settings for statement of accounts, remittance titles, and table row styling. ```json config = { "show": { "statement_of_accounts_summary": "left" "statement_of_accounts_note": true, "footer_invoice_payable": true, "footer_invoice_memo": true, "payment_profile_no_grace_period": true, "payment_profile_grace_period": true, "payment_profile_discount": true, "payment_profile_interest": true, "interest_headings_order": ["interest_type"," interest_date", "interest_details_description", "interest_total"] }, "text": { "statement_of_accounts_note": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_payable": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_memo": "{{bill_memo}}", "payment_profile_no_grace_period": "Payment is due upon receipt.", "payment_profile_grace_period": "Please pay within {{grace_period}}.", "payment_profile_discount": "{{discount_rate}}% discount will be applied if payment is received within {{discount_period}}.", "payment_profile_interest": "{{interest_rate}}% {{interest_type}} annual interest will be charged every {{interest_period}}.", }, "css": { "statement_of_accounts_title": { "color": "#00cc00", "font-family": "Times New Roman", "font-size": "0.875em", "background-color": "#ccff99", "border-color": "#0033ff", "border-style": "dotted", "border-width": "thick" }, "remittance_title": { "color": "#00ff00", "background-color": "None", "border-color": "#0033cc", "border-width": "medium", "border-style": "dotted", "font-family": "Arial", "font-size": "1.5em" } } } ``` -------------------------------- ### User Response Sample Source: https://docs.developers.clio.com/clio-manage/api-reference Sample JSON for a 'user' object, including account and role information. ```json { "user": { "account_owner": true, "clio_connect": true, "court_rules_default_attendee": true, "created_at": "2019-08-24T14:15:22Z", "default_calendar_id": 0, "email": "string", "enabled": true, "etag": "string", "first_name": "string", "id": 0, "initials": "string", "last_name": "string", "name": "string", "phone_number": "string", "rate": 0.1, "roles": [ "string" ], "subscription_type": "Attorney", "time_zone": "string", "updated_at": "2019-08-24T14:15:22Z" } } ``` -------------------------------- ### Fetch Billable Matters from Australia Region Source: https://docs.developers.clio.com/clio-manage/api-reference Example of how to construct a GET request to retrieve Billable Matters from the Australia region production server. ```http GET https://au.app.clio.com/api/v4/billable_matters.json ``` -------------------------------- ### Fetch Billable Matters from Canada Region Source: https://docs.developers.clio.com/clio-manage/api-reference Example of how to construct a GET request to retrieve Billable Matters from the Canada region production server. ```http GET https://ca.app.clio.com/api/v4/billable_matters.json ``` -------------------------------- ### Sample JSON Response for Success (201) Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample JSON response for a successful resource creation (HTTP 201 Created). It includes detailed information about the created document, its metadata, associated parent folder, matter, contact, document category, creator, and the latest document version. ```json { "data": { "id": 0, "etag": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "type": "Document", "locked": true, "name": "string", "received_at": "2019-08-24T14:15:22Z", "filename": "string", "size": 0, "content_type": "string", "parent": { "id": 0, "etag": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "type": "Folder", "locked": true, "name": "string", "root": true }, "matter": { "id": 0, "etag": "string", "number": 0, "display_number": "string", "custom_number": "string", "currency": { }, "description": "string", "status": "Pending", "location": "string", "client_reference": "string", "client_id": 0, "billable": true, "maildrop_address": "string", "billing_method": "flat", "open_date": "2019-08-24", "close_date": "2019-08-24", "pending_date": "2019-08-24", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "shared": true, "has_tasks": true, "last_activity_date": "2019-08-24", "matter_stage_updated_at": "2019-08-24T14:15:22Z" }, "contact": { "id": 0, "etag": "string", "name": "string", "first_name": "string", "middle_name": "string", "last_name": "string", "date_of_birth": "2019-08-24", "type": "Company", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "prefix": "string", "title": "string", "initials": "string", "clio_connect_email": "string", "locked_clio_connect_email": true, "client_connect_user_id": 0, "primary_email_address": "string", "secondary_email_address": "string", "primary_phone_number": "string", "secondary_phone_number": "string", "ledes_client_id": "string", "has_clio_for_clients_permission": true, "is_client": true, "is_clio_for_client_user": true, "is_co_counsel": true, "is_bill_recipient": true, "sales_tax_number": "string", "currency": { } }, "document_category": { "id": 0, "etag": "string", "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "creator": { "account_owner": true, "clio_connect": true, "court_rules_default_attendee": true, "default_calendar_id": 0, "email": "string", "enabled": true, "etag": "string", "id": 0, "type": "ManageUser", "initials": "string", "first_name": "string", "last_name": "string", "name": "string", "phone_number": "string", "rate": 0.1, "subscription_type": "Attorney", "time_zone": "string", "roles": [ "string" ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "latest_document_version": { "id": 0, "document_id": 0, "etag": "string", "uuid": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "filename": "string", "size": 0, "version_number": 0, "content_type": "string", "received_at": "2019-08-24T14:15:22Z", "put_url": "string", "fully_uploaded": true, "creator": { "account_owner": true, "clio_connect": true, "court_rules_default_attendee": true, "default_calendar_id": 0, "email": "string", "enabled": true, "etag": "string", "id": 0, "type": "ManageUser", "initials": "string", "first_name": "string", "last_name": "string", "name": "string", "phone_number": "string", "rate": 0.1, "subscription_type": "Attorney", "time_zone": "string", "roles": [ "string" ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "put_headers": [ { "name": "string", "value": "string" } ], "multiparts": [ { "part_number": 0, "put_url": "string", "put_headers": [ { "name": "string", "value": "string" } ] } ] }, "group": { "id": 0, "etag": "string", "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } } } ``` -------------------------------- ### Fetch Billable Matters from Europe Region Source: https://docs.developers.clio.com/clio-manage/api-reference Example of how to construct a GET request to retrieve Billable Matters from the Europe region production server. ```http GET https://eu.app.clio.com/api/v4/billable_matters.json ``` -------------------------------- ### Example Bill Theme Configuration Source: https://docs.developers.clio.com/clio-manage/api-reference A sample configuration object demonstrating various settings for Clio bill themes, including display options, text content, and CSS styling for different bill sections. ```json { "show": { "statement_of_accounts_summary": "left" "statement_of_accounts_note": true, "footer_invoice_payable": true, "footer_invoice_memo": true, "payment_profile_no_grace_period": true, "payment_profile_grace_period": true, "payment_profile_discount": true, "payment_profile_interest": true, "interest_headings_order": ["interest_type"," interest_date", "interest_details_description", "interest_total"] }, "text": { "statement_of_accounts_note": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_payable": "Please make all amounts payable to: {{firm_name}}", "footer_invoice_memo": "{{bill_memo}}", "payment_profile_no_grace_period": "Payment is due upon receipt.", "payment_profile_grace_period": "Please pay within {{grace_period}}.", "payment_profile_discount": "{{discount_rate}}% discount will be applied if payment is received within {{discount_period}}.", "payment_profile_interest": "{{interest_rate}}% {{interest_type}} annual interest will be charged every {{interest_period}}.", }, "css": { "statement_of_accounts_title": { "color": "#00cc00", "font-family": "Times New Roman", "font-size": "0.875em", "background-color": "#ccff99", "border-color": "#0033ff", "border-style": "dotted", "border-width": "thick" }, "remittance_title": { "color": "#00ff00", "background-color": "None", "border-color": "#0033cc", "border-width": "medium", "border-style": "dotted", "font-family": "Arial", "font-size": "1.5em" } } } ``` -------------------------------- ### Retrieve Active Payment Links Source: https://docs.developers.clio.com/guides/clio-manage/clio-payments-api Example GET request to retrieve all active payment links. This uses the 'active' query parameter to filter the results. ```http GET /api/v4/clio_payment_links?active=true ``` -------------------------------- ### Create Practice Area Response Sample (201 Created) Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample successful response when a practice area is created. It includes the newly created resource's details. ```json { "data": { "id": 0, "etag": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "name": "string", "category": "administrative", "code": "string" } } ``` -------------------------------- ### Get Billable Matters IDs (Canada Region) Source: https://docs.developers.clio.com/clio-manage/api-reference Example endpoint for retrieving billable matter IDs from the Canada region production server. This endpoint is for Canadian Clio accounts. ```http https://ca.app.clio.com/api/v4/billable_matters/ids.json ``` -------------------------------- ### Create Document Request and Response Source: https://docs.developers.clio.com/openapi.json Example of how to create a new document by first requesting a signed upload URL and then uploading the file. The response contains the document ID and upload details. ```json Request POST api/v4/documents?fields=id,latest_document_version{uuid,put_url,put_headers} "data": { "name": "file.jpg", "parent": { "id": 1, "type": "Matter" } } Response { "data": { "id": 1234, "latest_document_version": { "uuid": "a51faa2c-859e-4c08-a996-2d0bb385df90", "put_url": "https://s3.us-west-2.amazonaws.com/iris-production/uploads/document_version/file/a51faa2c-859e-4c08-a996-2d0bb385df90/file.jpg?X-Amz-Expires=28800&X-Amz-Date=20171024T214532Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential={aws_access_key}/20171024/us-west-2/s3/aws4_request&X-Amz-SignedHeaders=content-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=afe5000df0972d02884a2219f913bfa62fe2531c75b4fcd1edbcb84d267d2b8e", "put_headers": [ { "name": "x-amz-server-side-encryption", "value": "AES256" }, { "name": "Content-Type", "value": "image/jpeg" } ] } } } ``` -------------------------------- ### TaskTemplateList Creation Response Sample Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample JSON response for a successful creation of a TaskTemplateList, indicating the fields that will be returned. ```json { "data": { "created_at": "2019-08-24T14:15:22Z", "description": "string", "id": 0, "etag": "string", "name": "string", "templates_count": 0, "updated_at": "2019-08-24T14:15:22Z", "practice_area": { "id": 0, "etag": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "name": "string", "category": "administrative", "code": "string" }, "creator": { "account_owner": true, "clio_connect": true, "court_rules_default_attendee": true, "created_at": "2019-08-24T14:15:22Z", "default_calendar_id": 0, "email": "string", "enabled": true, "etag": "string", "first_name": "string", "id": 0, "initials": "string", "last_name": "string", "name": "string", "phone_number": "string", "rate": 0.1, "roles": [ "string" ], "subscription_type": "Attorney", "time_zone": "string", "updated_at": "2019-08-24T14:15:22Z" } } } ``` -------------------------------- ### Get Billable Matters IDs (Australia Region) Source: https://docs.developers.clio.com/clio-manage/api-reference Example endpoint for retrieving billable matter IDs from the Australia region production server. Use this endpoint for Australian Clio accounts. ```http https://au.app.clio.com/api/v4/billable_matters/ids.json ``` -------------------------------- ### Folder#create Source: https://docs.developers.clio.com/openapi.json Create a Folder to an existing folder. ```APIDOC ## POST /folders ### Description Creates a new folder within an existing folder structure. ### Method POST ### Endpoint /folders ### Parameters #### Header Parameters - **X-API-VERSION** (string) - Optional - The API minor version. Default: latest version. #### Query Parameters - **fields** (string) - Optional - The fields to be returned. See response samples for what fields are available. For more information see the [fields section](#section/Fields). #### Request Body - **data** (object) - Required - The data for the new folder. - **document_category** (object) - Optional - Specifies the document category for the folder. - **id** (integer) - Optional - The unique identifier for a single DocumentCategory associated with the Folder. Use the keyword `null` to specify no association. - **external_properties** (array) - Optional - An array of external properties to associate with the folder. Note: there is a limit of 5 external_properties per Folder. - **name** (string) - Required - The ExternalProperty name. - **value** (string) - Required - The ExternalProperty value. - **name** (string) - Required - Name of the Folder. - **parent** (object) - Optional - Specifies the parent folder. - **id** (integer) - Required - The unique identifier of the parent object. ### Response #### Success Response (201) - **Folder_Show** (object) - Details of the created folder. #### Error Responses - **400** - Bad Request - **401** - Unauthorized - **403** - Forbidden - **404** - Not Found - **422** - Unprocessable Entity - **429** - Too Many Requests ``` -------------------------------- ### Fetch Billable Matters with Query Parameters Source: https://docs.developers.clio.com/clio-manage/api-reference Example of how to construct a GET request to retrieve Billable Matters, specifying query parameters for filtering. The US region production server URL is used. ```http GET https://app.clio.com/api/v4/billable_matters.json?client_id=12345&query=example&limit=100 ``` -------------------------------- ### Get Billable Matters IDs (Europe Region) Source: https://docs.developers.clio.com/clio-manage/api-reference Example endpoint for retrieving billable matter IDs from the Europe region production server. Use this endpoint if your Clio account is based in Europe. ```http https://eu.app.clio.com/api/v4/billable_matters/ids.json ``` -------------------------------- ### Activity Description Response Sample Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample JSON response for an Activity Description, illustrating the available fields and their structure. ```json { "data": [ { "id": 0, "etag": "string", "name": "string", "visible_to_co_counsel": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "default": true, "type": "string", "utbms_activity_id": 0, "utbms_task_name": "string", "utbms_task_id": 0, "xero_service_code": "string", "accessible_to_user": true, "category_type": "string", "currency": { "id": 0, "etag": "string", "code": "string", "sign": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "groups": [ { "client_connect_user": true, "etag": "string", "id": 0, "name": "string", "type": "UserGroup", "updated_at": "2019-08-24T14:15:22Z" } ], "rate": { "amount": 0.1, "non_billable_amount": 0.1, "type": "User", "hierarchy": "Default" }, "utbms_task": { "id": 0, "etag": "string", "name": "string", "code": "string", "description": "string", "type": "UtbmsTask", "utbms_set_id": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }, "utbms_activity": { "id": 0, "etag": "string", "name": "string", "code": "string", "description": "string", "type": "UtbmsTask", "utbms_set_id": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } } ] } ``` -------------------------------- ### Get Billable Matters IDs (US Region) Source: https://docs.developers.clio.com/clio-manage/api-reference Example endpoint for retrieving billable matter IDs from the US region production server. This is useful for integrating with Clio's API for matter management. ```http https://app.clio.com/api/v4/billable_matters/ids.json ``` -------------------------------- ### Sample Response for Listing Users Source: https://docs.developers.clio.com/clio-grow/api-reference This JSON response provides a paginated list of users within an account, including their details and account information. ```json { "data": [ { "id": 123, "first_name": "Jane", "last_name": "Doe", "email": "jane.doe@example.com", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-02-20T14:45:00Z", "account": { "id": 456, "firm_name": "Doe & Associates" } } ], "meta": { "paging": { "next": "https://grow.clio.com/api/v2/contacts?page_token=abc123", "previous": "http://example.com" } } } ``` -------------------------------- ### Split File and Get MD5 Checksums Source: https://docs.developers.clio.com/openapi.json For files over 100MB, use multipart upload. This example shows how to split a large file into smaller parts using 'split' and calculate the base64-encoded MD5 checksum for each part using 'openssl'. ```bash split -b 31457280 big.pdf big.pdf. # break the file to max. 30MB size openssl md5 -binary big.pdf.aa | base64 # F16pda4G0h4lzH7d2/Jbdw== openssl md5 -binary big.pdf.ab | base64 # cRbxEG//GK9rIze5tdYzcg== openssl md5 -binary big.pdf.ac | base64 # Tck0KKU4SrmSp8hsSCuSYg== openssl md5 -binary big.pdf.ad | base64 # CrIt7lbZzVhMV7JzVTkUvw== ``` -------------------------------- ### Response Sample for Returning All Grants (200 OK) Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample JSON response when successfully retrieving a list of grants. It includes details for each grant and its associated funding source. ```json { "data": [ { "id": 0, "etag": "string", "name": "string", "funding_code": "string", "funding_code_and_name": "string", "funding_source_name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "balance": "string", "start_date": "2019-08-24", "end_date": "2019-08-24", "grant_funding_source": { "id": 0, "etag": "string", "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } } ] } ``` -------------------------------- ### Response Sample for Successful Group Creation (200 OK) Source: https://docs.developers.clio.com/clio-manage/api-reference This is a sample JSON response for a successful group creation. It includes details about the group, its users, and timestamps. ```json { "data": { "client_connect_user": true, "etag": "string", "id": 0, "name": "string", "type": "UserGroup", "updated_at": "2019-08-24T14:15:22Z", "users": [ { "account_owner": true, "clio_connect": true, "court_rules_default_attendee": true, "created_at": "2019-08-24T14:15:22Z", "default_calendar_id": 0, "email": "string", "enabled": true, "etag": "string", "first_name": "string", "id": 0, "initials": "string", "last_name": "string", "name": "string", "phone_number": "string", "rate": 0.1, "roles": [ "string" ], "subscription_type": "Attorney", "time_zone": "string", "updated_at": "2019-08-24T14:15:22Z" } ] } } ``` -------------------------------- ### GET /users.json Source: https://docs.developers.clio.com/clio-manage/api-reference Retrieves a list of user records. This endpoint supports extensive filtering based on creation/update times, enabled status, fields, IDs, co-counsel inclusion, name, pagination, setup status, role, and subscription type. It also allows for custom ordering of results. ```APIDOC ## GET /users.json ### Description Retrieves a list of user records. This endpoint supports extensive filtering based on creation/update times, enabled status, fields, IDs, co-counsel inclusion, name, pagination, setup status, role, and subscription type. It also allows for custom ordering of results. ### Method GET ### Endpoint - US region: https://app.clio.com/api/v4/users.json - Europe region: https://eu.app.clio.com/api/v4/users.json - Canada region: https://ca.app.clio.com/api/v4/users.json - Australia region: https://au.app.clio.com/api/v4/users.json ### Parameters #### Query Parameters - **created_since** (string ) - Optional - Filter User records to those having the `created_at` field after a specific time. (Expects an ISO-8601 timestamp). - **enabled** (boolean) - Optional - Filter User records to those that are enabled or disabled. - **fields** (string) - Optional - The fields to be returned. See response samples for what fields are available. For more information see the fields section. - **ids[]** (integer ) - Optional - Filter User records to those having the specified unique identifiers. - **include_co_counsel** (boolean) - Optional - Filter User to include co-counsel users. - **limit** (integer ) - Optional - A limit on the number of User records to be returned. Limit can range between 1 and 2000. Default: `2000`. - **name** (string) - Optional - Filter User records to those with the given name. - **order** (string) - Optional - Enum: "enabled(asc)" "enabled(desc)" "id(asc)" "id(desc)" "name(asc)" "name(desc)" "first_name(asc)" "first_name(desc)" "last_name(asc)" "last_name(desc)" "initials(asc)" "initials(desc)" "subscription_type(asc)" "subscription_type(desc)" Orders the User records by the given field. Default: `id(asc)`. - **page_token** (string) - Optional - A token specifying which page to return. - **pending_setup** (boolean) - Optional - Filter User records based on whether or not they are still being setup. - **role** (string) - Optional - Enum: "admin" "accounts" "billing" "reports" Filter User records to those with a specific role. - **subscription_type** (string) - Optional - Enum: "attorney" "nonattorney" Filter User records to those with a specific subscription type. - **updated_since** (string ) - Optional - Filter User records to those having the `updated_at` field after a specific time. (Expects an ISO-8601 timestamp). #### Header Parameters - **X-API-VERSION** (string) - Optional - The API minor version. Default: latest version. ### Responses #### Success Response (200) Ok #### Error Responses - **400** Bad Request - **401** Unauthorized - **403** Forbidden - **429** Too Many Requests ``` -------------------------------- ### Create Folder Source: https://docs.developers.clio.com/openapi.json Creates a new folder. ```APIDOC ## POST /folders ### Description Creates a new folder. ### Method POST ### Endpoint /folders ### Response #### Success Response (200) - **Folder_List** (object) - #### Error Responses - **Bad Request** (400) - **Unauthorized** (401) - **Forbidden** (403) - **Too Many Requests** (429) ``` -------------------------------- ### Redacted Bill Response Example Source: https://docs.developers.clio.com/api-docs/clio-manage/permissions This is an example of an API response where bill information has been redacted due to user permissions, indicated by the 'redacted: true' field. ```JSON { "data": { "id": 15, "bill": { "id": 527, "redacted": true } } } ```