Velaris Notes API

The Notes API from Velaris — 2 operation(s) for notes.

Operations 5

GET /notes Get Notes #
POST /notes Create Note #
GET /notes/:id Get Note by External ID #
PUT /notes/:id Update Note with External ID #
DELETE /notes/:id Delete Note with Source ID #

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/velaris-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

velaris-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Velaris Public Activity Notes API
  version: 1.0.0
  description: The Velaris Public API for the AI Customer Success Platform. Manage organizations, accounts, contacts, opportunities, risks, custom objects, activities, notes, tickets, tasks, users, surveys and more. Base URL https://api.euw1.velaris.io. Converted by API Evangelist from the provider-published public Postman collection (https://developers.velaris.io/).
  contact:
    name: Velaris
    url: https://www.velaris.io/
servers:
- url: https://api.euw1.velaris.io
  description: EU-West-1 production
security:
- bearerAuth: []
- basicAuth: []
tags:
- name: Notes
paths:
  /notes:
    get:
      operationId: getNotes
      summary: Get Notes
      tags:
      - Notes
      responses:
        '200':
          description: OK
    post:
      operationId: createNote
      summary: Create Note
      tags:
      - Notes
      requestBody:
        content:
          application/json:
            example:
              body: '"<p style=\"color:#706669;\">Created Date (UTC): May 24, 2023, 11:16 AM | Created By: Sheruni Fernandon</p>"'
              title: Test - 03
              source: HUBSPOT
              externalId: Test-3-creation
              linkedEntities:
              - type: organization
                externalId: amorg1
              - type: organization
                id: 1
              - type: organization
                id: 3
              - type: account
                id: 15
              - type: account
                id: 12
              - type: account
                externalId: '26'
              - type: pipeline
                id: 8
              - type: pipeline
                id: 10
              - type: contact
                email: test.chathudya+00002@gmail.com
              - type: contact
                email: test.chathudya+00002@gmail.com
              - type: contact
                externalId: '4'
      responses:
        '200':
          description: OK
  /notes/:id:
    get:
      operationId: getNoteByExternalId
      summary: Get Note by External ID
      tags:
      - Notes
      responses:
        '200':
          description: OK
    put:
      operationId: updateNoteWithExternalId
      summary: Update Note with External ID
      tags:
      - Notes
      requestBody:
        content:
          application/json:
            example:
              body: '"<p style=\"color:#706669;\">Created Date (UTC): May 24, 2028, 13:18 AM | Created By: Sheruni</p>"'
              linkedEntities:
              - type: organization
                id: 3
              - type: account
                id: 16
              - type: account
                id: 12
              - type: account
                externalId: '26'
              - type: pipeline
                id: 8
              - type: pipeline
                id: 12
              - type: contact
                email: test.chathudya+00002@gmail.com
      responses:
        '200':
          description: OK
    delete:
      operationId: deleteNoteWithSourceId
      summary: Delete Note with Source ID
      tags:
      - Notes
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'User-scoped access token. Header: Authorization: Bearer {access_token}. Create under Profile > Security > Access token.'
    basicAuth:
      type: http
      scheme: basic
      description: Legacy. Base64(username:password). Not available for SSO/MFA tenants.