Capsule Parties API

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

Operations 8

GET /parties List parties
POST /parties Create a party
GET /parties/{partyId} Show a party
PUT /parties/{partyId} Update a party
DELETE /parties/{partyId} Delete a party
GET /parties/{partyId}/people List employees linked to an organisation
GET /parties/deleted List deleted parties since a date
GET /parties/search Search 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-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

capsule-parties-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Capsule CRM REST Opportunities Parties API
  description: 'Capsule CRM v2 REST API for parties (contacts and companies),

    opportunities, projects (kases), and tasks. Authentication uses

    OAuth 2.0 bearer tokens (authorization code flow) or personal

    access tokens.


    This specification is a best-effort, hand-authored representation of

    the publicly documented operations at https://developer.capsulecrm.com/.

    Request bodies and response schemas are modeled generically; refer to

    the developer docs for the full property set per resource.

    '
  version: 2.0.0
  contact:
    name: Capsule CRM
    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
      parameters:
      - $ref: '#/components/parameters/Embed'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PerPage'
      responses:
        '200':
          $ref: '#/components/responses/PartyList'
    post:
      tags:
      - Parties
      summary: Create a party
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartyEnvelope'
      responses:
        '201':
          $ref: '#/components/responses/PartyObject'
  /parties/{partyId}:
    parameters:
    - $ref: '#/components/parameters/PartyId'
    get:
      tags:
      - Parties
      summary: Show a party
      parameters:
      - $ref: '#/components/parameters/Embed'
      responses:
        '200':
          $ref: '#/components/responses/PartyObject'
    put:
      tags:
      - Parties
      summary: Update a party
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartyEnvelope'
      responses:
        '200':
          $ref: '#/components/responses/PartyObject'
    delete:
      tags:
      - Parties
      summary: Delete a party
      responses:
        '204':
          description: Deleted
  /parties/{partyId}/people:
    parameters:
    - $ref: '#/components/parameters/PartyId'
    get:
      tags:
      - Parties
      summary: List employees linked to an organisation
      responses:
        '200':
          $ref: '#/components/responses/PartyList'
  /parties/deleted:
    get:
      tags:
      - Parties
      summary: List deleted parties since a date
      parameters:
      - in: query
        name: since
        schema:
          type: string
          format: date-time
      responses:
        '200':
          $ref: '#/components/responses/PartyList'
  /parties/search:
    get:
      tags:
      - Parties
      summary: Search parties
      parameters:
      - in: query
        name: q
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/PartyList'
components:
  schemas:
    PartyEnvelope:
      type: object
      properties:
        party:
          $ref: '#/components/schemas/Party'
    Party:
      type: object
      additionalProperties: true
  parameters:
    PartyId:
      in: path
      name: partyId
      required: true
      schema:
        type: string
    Embed:
      in: query
      name: embed
      description: Comma-separated list of related resources to embed.
      schema:
        type: string
    PerPage:
      in: query
      name: perPage
      schema:
        type: integer
    Page:
      in: query
      name: page
      schema:
        type: integer
  responses:
    PartyObject:
      description: Party envelope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PartyEnvelope'
    PartyList:
      description: List of parties.
      content:
        application/json:
          schema:
            type: object
            properties:
              parties:
                type: array
                items:
                  $ref: '#/components/schemas/Party'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'OAuth 2.0 access token or personal access token. The OAuth

        authorization endpoint is https://api.capsulecrm.com/oauth/authorise

        and the token endpoint is https://api.capsulecrm.com/oauth/token.

        '