For Agents
Manage legal matters, contacts, time, billing, and document folders for law firms via Actionstep's practice management API.
Get started with Actionstep API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create a matter in Actionstep"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Actionstep API API.
Create and update legal matters and link participants through /actions and /actionparticipants
Track time and convert it into bills via /bills and disbursements endpoints
Manage contact records, relationships, and contact folders under /contactdocuments and /contactrelationships
Define matter templates and participant roles with /actiontypes and /actiontypeparticipanttypes
GET STARTED
Use for: I need to open a new legal matter for a client, Add a participant to an existing matter, Generate a bill for time recorded on a matter, List all matters of type 'family law' opened this month
Not supported: Does not handle court e-filing, e-signature, or general ledger accounting — use for legal matter, contact, time, billing, and intake data only.
Jentic publishes the only available OpenAPI specification for Actionstep API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Actionstep API, keeping it validated and agent-ready. Actionstep is a legal practice management platform whose API exposes matters (called actions), participants, time entries, bills, disbursements, document folders, and related data collections. The spec covers 139 operations across resources like actions, action types, contacts, bills, and data collection records — enough for end-to-end matter creation, billing, and document workflows. Authentication is OAuth 2.0, granted through Actionstep's developer portal.
Capture custom case data through /datacollections and /datacollectionrecords
Organise matter documents in /actionfolders and configure NetDocs settings
Patterns agents use Actionstep API API for, with concrete tasks.
★ Matter intake automation
Law firms route incoming client enquiries through an intake process — collecting client details, conflict checks, and matter type. An agent can create a contact, create a new action via POST /actions, attach the contact via /actionparticipants, and store intake answers in a data collection record. This cuts a 30-minute manual setup down to a few API calls.
Create a new matter at /actions of action type 'Personal Injury', add the client as a participant via /actionparticipants, and post intake answers to /datacollectionrecords
Time and billing workflow
Lawyers record billable time and need it flowing into client invoices. An agent can pull recorded entries, post them to a bill via /bills, attach disbursements, and finalise the invoice. Combining time, disbursements, and trust ledger data through Actionstep's API removes the duplicate entry work between case management and accounting tools.
Create a new bill at /bills for matter 234, attach time entries and a disbursement, and mark it ready to send
Custom case data capture
Different practice areas need different intake fields — a personal injury matter captures injury date and incident type, while a property matter captures title number. An agent can read the data collection definition via /datacollections and /datacollectionfields, then post answers to /datacollectionrecords and /datacollectionrecordvalues. This keeps practice-specific data structured and queryable rather than buried in free-text notes.
List datacollectionfields on the 'PI Intake' collection and post values for 'date_of_incident' and 'injury_type' for matter 123
AI agent build assistant
Firms building agent assistants for paralegals expose Actionstep through Jentic alongside document automation and e-signature APIs. The OAuth 2.0 token is held in the Jentic vault, and the agent searches by intent, e.g. 'open a matter', without paralegals needing to know the underlying endpoint paths.
Search Jentic for 'create an Actionstep matter', load the schema, and execute it with action_type, name, and primary_contact
139 endpoints — jentic publishes the only available openapi specification for actionstep api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/actions
List matters
/actions
Create a matter
/actionparticipants
Attach a contact to a matter
/actiontypes
List matter type templates
/bills
Create a bill
/datacollectionrecords
Post a data collection record
/contactrelationships
List contact relationships
/disbursements
List disbursements
/actions
List matters
/actions
Create a matter
/actionparticipants
Attach a contact to a matter
/actiontypes
List matter type templates
/bills
Create a bill
/datacollectionrecords
Three things that make agents converge on Jentic-routed access.
Credential isolation
Actionstep OAuth tokens are stored encrypted in the Jentic vault. Refresh is handled transparently, so agents never see access or refresh tokens in their context.
Intent-based discovery
Agents search Jentic by intent, e.g. 'open a matter in Actionstep' or 'post a disbursement', and Jentic returns the matching operation with its input schema.
Time to first call
Direct Actionstep integration: 3-7 days for OAuth, action-type modelling, and billing logic. Through Jentic: under 1 hour.
Alternatives and complements available in the Jentic catalogue.
Xero Accounting API
Sync Actionstep bills and disbursements into Xero for full firm accounting.
Use Xero when the firm needs full general-ledger accounting, bank feeds, or payroll alongside Actionstep matter data.
Acrual API
Equivalent practice-management style API for trades and manufacturing instead of legal.
Choose Acrual when the customer is in construction or manufacturing rather than legal.
Calendly API
Schedule client intake calls and link the resulting event back to an Actionstep matter.
Use Calendly when the firm wants self-serve scheduling for prospective clients before a matter is opened.
Specific to using Actionstep API API through Jentic.
Why is there no official OpenAPI spec for Actionstep API?
Actionstep does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Actionstep API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Actionstep API use?
Actionstep uses OAuth 2.0. You register an application in the Actionstep developer portal, run an authorization code flow to obtain access and refresh tokens, and pass the access token on each request. Through Jentic, the OAuth tokens live in the Jentic vault and the agent receives a scoped execution handle rather than the raw token.
Can I create matters and bills with the Actionstep API?
Yes. POST /actions creates a new matter against an action type, /actionparticipants attaches contacts in defined roles, and /bills generates an invoice with attached time entries and disbursements. The spec covers 139 operations spanning matters, contacts, billing, and custom data collections.
What are the rate limits for the Actionstep API?
The OpenAPI spec does not declare rate limits, so check the Actionstep developer portal for the current ceiling. Use exponential backoff on 429 responses and prefer pagination over wide unfiltered list calls on resources like /actions.
How do I record matter intake with the Actionstep API through Jentic?
Run pip install jentic, search Jentic for 'create an Actionstep matter and capture intake', load the schemas for POST /actions and POST /datacollectionrecords, and execute them in sequence. Jentic handles OAuth refresh from the vault, so the agent only supplies matter details and intake values.
Does the Actionstep API support custom data per practice area?
Yes. The /datacollections, /datacollectionfields, and /datacollectionrecords endpoints let you define and capture practice-specific structured data — e.g. injury type for personal injury, title number for conveyancing — without forcing every matter onto a one-size-fits-all schema.
Post a data collection record
/contactrelationships
List contact relationships
/disbursements
List disbursements