Agile CRM Notes API

The Notes API from Agile CRM — 7 operation(s) for notes.

Operations 8

POST /api/contacts/email/note/add Add a note via email #
POST /api/contacts/notes/bulk Bulk delete notes #
GET /api/contacts/{contact_id}/notes Get notes for a contact #
DELETE /api/contacts/{contact_id}/notes/{note_id} Remove a contact note #
POST /api/notes Create a note and relate to contacts #
POST /api/opportunity/deals/notes Create a deal note #
PUT /api/opportunity/deals/notes Update a deal note #
GET /api/opportunity/{deal_id}/notes Get deal notes #

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/agile-crm-notes-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

agile-crm-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agile CRM REST Campaigns Notes API
  version: 1.0.0
  description: HTTPS-only REST API for managing contacts, companies, deals (opportunities), campaigns, tasks, events, notes, tracks, tickets, and documents in Agile CRM. Authentication is HTTP Basic with account email as username and REST client API key as password.
  contact:
    name: Agile CRM
    url: https://www.agilecrm.com/api
servers:
- url: https://{domain}.agilecrm.com/dev
  description: Tenant-scoped base URL
  variables:
    domain:
      default: mydomain
      description: Your Agile CRM tenant subdomain
security:
- BasicAuth: []
tags:
- name: Notes
paths:
  /api/contacts/email/note/add:
    post:
      tags:
      - Notes
      summary: Add a note via email
      responses:
        '200':
          description: Note added
      operationId: addNoteByEmail
  /api/contacts/notes/bulk:
    post:
      tags:
      - Notes
      summary: Bulk delete notes
      responses:
        '200':
          description: Notes deleted
      operationId: bulkDeleteNotes
  /api/contacts/{contact_id}/notes:
    get:
      tags:
      - Notes
      summary: Get notes for a contact
      parameters:
      - $ref: '#/components/parameters/ContactId'
      responses:
        '200':
          description: Notes
      operationId: listContactNotes
  /api/contacts/{contact_id}/notes/{note_id}:
    delete:
      tags:
      - Notes
      summary: Remove a contact note
      parameters:
      - $ref: '#/components/parameters/ContactId'
      - name: note_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
      operationId: deleteContactNote
  /api/notes:
    post:
      tags:
      - Notes
      summary: Create a note and relate to contacts
      responses:
        '200':
          description: Note created
      operationId: createNote
  /api/opportunity/deals/notes:
    post:
      tags:
      - Notes
      summary: Create a deal note
      responses:
        '200':
          description: Note created
      operationId: createDealNote
    put:
      tags:
      - Notes
      summary: Update a deal note
      responses:
        '200':
          description: Note updated
      operationId: updateDealNote
  /api/opportunity/{deal_id}/notes:
    get:
      tags:
      - Notes
      summary: Get deal notes
      parameters:
      - name: deal_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Notes
      operationId: listDealNotes
components:
  parameters:
    ContactId:
      name: contact_id
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic auth - username is account email, password is REST client API key.