Clients
Comprehensive client management including CRUD operations, task summaries, import functionality, and key date management. Supports filtering by manager, partner, status, type, and search terms. Includes direct import (create client with all related data in one request), import from third-party platforms (view available clients and import them), task summary by status, and management of client key dates (year-end, tax deadlines, etc.).
-
GET
List Clients
Lists all Clients for the given tenant.
/api/tenants/{tenant}/clients
-
POST
Create Client
Creates a new Client for the specified tenant.
/api/tenants/{tenant}/clients
-
GET
Get Client
Gets a Client for the specified tenant.
/api/tenants/{tenant}/clients/{code}
-
PUT
Update Client
Updates a Client for the specified tenant.
/api/tenants/{tenant}/clients/{code}
-
DELETE
Delete Client
Deletes a Client for the specified tenant.
/api/tenants/{tenant}/clients/{code}
-
GET
Task Summary
Returns a count of top-level tasks grouped by status for the specified client (excludes child tasks)
/api/tenants/{tenant}/clients/{code}/tasks/summary
-
POST
Import Client
Import a client with comprehensive data. This saves you creating a Client and then creating additional info such as contacts, etc - you can create the...
/api/tenants/{tenant}/clients/import
-
GET
Get available for import
Returns a paginated list of clients available for import from the specified third-party connection. This endpoint does not import any data - it only l...
/api/tenants/{tenant}/clients/import/available
-
POST
Import from platform (sync-when-fast, async-when-slow)
Imports clients from the third-party platform. This endpoint uses a hybrid approach: it queues the import job and waits up to 10 seconds for completio...
/api/tenants/{tenant}/clients/import/from-connection
-
GET
Get Client Dates
Returns all key dates for the specified client
/api/tenants/{tenant}/clients/{code}/dates
-
PUT
Save Client Dates
Saves or updates key dates for the specified client. Dates with null values will be deleted.
/api/tenants/{tenant}/clients/{code}/dates