Capsule CRM Parties API

The Parties API from Capsule CRM — 4 operation(s) for parties.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/capsule-crm-parties-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

capsule-crm-parties-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Capsule CRM API v2 Entries Parties API
  description: Capsule is an online CRM for small and midsize businesses that manages contacts, sales pipelines, tasks, projects, and email integration. The v2 API is a REST/JSON service exposing parties (people and organisations), opportunities, projects, tasks, cases, users, and custom fields.
  version: '2.0'
  contact:
    name: Capsule CRM Developer
    url: https://developer.capsulecrm.com/
servers:
- url: https://api.capsulecrm.com/api/v2
  description: Production
security:
- bearerAuth: []
tags:
- name: Parties
paths:
  /parties:
    get:
      tags:
      - Parties
      summary: List parties
      operationId: listParties
      parameters:
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PerPage'
      responses:
        '200':
          description: OK
    post:
      tags:
      - Parties
      summary: Create party
      operationId: createParty
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Created
  /parties/{id}:
    parameters:
    - $ref: '#/components/parameters/IdPath'
    get:
      tags:
      - Parties
      summary: Show party
      operationId: showParty
      responses:
        '200':
          description: OK
    put:
      tags:
      - Parties
      summary: Update party
      operationId: updateParty
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Parties
      summary: Delete party
      operationId: deleteParty
      responses:
        '204':
          description: No Content
  /parties/search:
    get:
      tags:
      - Parties
      summary: Search parties
      operationId: searchParties
      parameters:
      - in: query
        name: q
        schema:
          type: string
      responses:
        '200':
          description: OK
  /parties/employees:
    get:
      tags:
      - Parties
      summary: List employees of an organisation
      operationId: listEmployees
      responses:
        '200':
          description: OK
components:
  parameters:
    Page:
      in: query
      name: page
      schema:
        type: integer
    IdPath:
      in: path
      name: id
      required: true
      schema:
        type: integer
        format: int64
    PerPage:
      in: query
      name: perPage
      schema:
        type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Personal access token or OAuth 2 access token