For Agents
Manage relationships, deals, notes, groups, and sales pipelines programmatically across 12 endpoints with markdown-enabled note-taking.
Use for: Add a new contact to my CRM, Create a note about a recent meeting with a client, Update the status of a sales deal, List all relationships in a specific group
Not supported: Covers relationship management, deal tracking, note-taking, group organization, and pipeline management. Does not handle email syncing, calendar integration, or third-party CRM imports — use for core CRM data operations only.
Jentic publishes the only available OpenAPI specification for Parma CRM API, keeping it validated and agent-ready. The Parma API exposes relationship management, deal tracking, note-taking, group organization, and pipeline management for modern CRM workflows. It powers AI-driven relationship tracking, sales pipeline automation, and collaborative note-taking for teams managing complex professional networks.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Parma CRM API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Parma CRM API.
Create and update relationship records with contact details
Track deals through custom sales pipelines
Create markdown-formatted notes linked to relationships
Organize relationships into groups for segmentation
List and filter relationships by name, type, or email
Retrieve pipeline stages and deal progress
Update deal status and move deals through pipeline stages
Link relationships to groups and manage group memberships
Search relationships and deals with pagination support
Retrieve relationship-specific notes and group associations
Patterns agents use Parma CRM API for, with concrete tasks.
★ AI-Powered Relationship Intelligence
Build AI agents that automatically create and update relationship records after meetings or interactions. POST /api/v1/relationships creates new contacts with name, type, email, and phone, while PATCH /api/v1/relationships/{id} updates existing records. Agents can enrich CRM data by searching external sources and updating relationship context.
POST /api/v1/relationships with contact details, then POST /api/v1/notes to add meeting summary
Automated Note-Taking and Context Capture
Capture meeting notes, interaction summaries, and relationship context using markdown-formatted notes linked to relationships. POST /api/v1/notes accepts markdown content and relationship_id, enabling automated note creation from meeting transcripts or email summaries. GET /api/v1/relationships/{relationship_id}/notes retrieves full note history.
POST /api/v1/notes with markdown content and relationship_id after each meeting or interaction
Deal Pipeline Automation
Track sales opportunities through custom pipeline stages by managing deals programmatically. GET /api/v1/deals lists all deals with pagination, while GET /api/v1/deals/{id} retrieves deal-specific details including stage, value, and associated relationship. Automate deal updates based on customer actions or time-based triggers.
GET /api/v1/deals to list pipeline, then update deal stage when trigger conditions are met
Agent-Driven CRM via Jentic
An AI agent managing professional relationships can create contacts, log interactions as markdown notes, track deals, and organize relationships into groups through Jentic without holding Parma credentials in context. Jentic resolves intents like 'log a meeting with client X' to POST /api/v1/notes with the appropriate schema.
Search Jentic for 'create a CRM note', load POST /api/v1/notes schema, and execute with relationship context
12 endpoints — jentic publishes the only available openapi specification for parma crm api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/v1/relationships
Create a new relationship record
/api/v1/relationships
List and search relationships with filtering
/api/v1/notes
Create a markdown-formatted note
/api/v1/relationships/{relationship_id}/notes
Retrieve all notes for a relationship
/api/v1/deals
List all deals with pagination
/api/v1/relationships/{id}
Update relationship information
/api/v1/pipelines
List all sales pipelines
/api/v1/relationships
Create a new relationship record
/api/v1/relationships
List and search relationships with filtering
/api/v1/notes
Create a markdown-formatted note
/api/v1/relationships/{relationship_id}/notes
Retrieve all notes for a relationship
/api/v1/deals
List all deals with pagination
/api/v1/relationships/{id}
Update relationship information
/api/v1/pipelines
List all sales pipelines
Three things that make agents converge on Jentic-routed access.
Credential isolation
Parma's Bearer token or OAuth credentials are stored encrypted in the Jentic vault and injected at execution time. Agents receive scoped access — raw credentials never enter agent context.
Intent-based discovery
Agents search by intent (e.g. 'create a CRM contact', 'log a meeting note') and Jentic returns the matching Parma endpoint with the request schema pre-shaped for execution.
Time to first call
Direct Parma integration: 2-4 days mapping endpoints, handling OAuth flow, and building markdown note formatting. Through Jentic: under 1 hour once credentials are configured — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Pipedrive API
Sales CRM with pipeline management, deal tracking, and activity scheduling
Choose Pipedrive when you need a mature enterprise CRM with extensive integrations; choose Parma for modern, AI-focused relationship management
HubSpot CRM API
Full-featured CRM with marketing automation, sales, and service hub integrations
Choose HubSpot for all-in-one marketing and sales platform; choose Parma for lightweight, relationship-focused CRM with markdown notes
Notion API
Knowledge management and note-taking with databases and rich content
Use Parma for structured relationship and deal management; use Notion for long-form documentation and team knowledge bases
Specific to using Parma CRM API through Jentic.
Why is there no official OpenAPI spec for Parma API?
Parma does not publish an OpenAPI specification for their CRM API. Jentic generates and maintains this spec based on Parma's API documentation so that AI agents and developers can call Parma 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 Parma API use?
The Parma API supports Bearer token authentication (retrieve your API token from https://app.parma.ai/api) and OAuth 2.0 authorization code flow with optional PKCE. Through Jentic, credentials live in the encrypted vault and are injected at execution time so they never enter agent context.
Can I create notes with markdown formatting?
Yes. POST /api/v1/notes accepts markdown-formatted content in the content field, allowing rich text formatting including headers, lists, links, and emphasis. This is ideal for automated note-taking from meeting transcripts or email summaries.
How do I organize relationships into groups?
Use POST /api/v1/relationships/{relationship_id}/groups with a group_id to link a relationship to a group. GET /api/v1/relationships/{relationship_id}/groups returns all groups a relationship belongs to. DELETE removes the association.
Can AI agents update deals through Jentic?
Yes. Search Jentic for 'update a Parma deal', load the appropriate endpoint schema, and execute with deal ID and updated fields. Jentic handles authentication and request formatting so agents can automate deal pipeline progression.
What is the rate limit for the Parma API?
Parma does not publish specific rate limits in their documentation. Use reasonable request patterns and implement exponential backoff on 429 responses. Contact Parma support for account-specific rate limit information.
GET STARTED