QuotaPath deal API

The deal API from QuotaPath — 3 operation(s) for deal.

Operations 7

GET /deal/ #
POST /deal/ #
POST /deal/bulk/ #
GET /deal/{uuid}/ #
PUT /deal/{uuid}/ #
PATCH /deal/{uuid}/ #
DELETE /deal/{uuid}/ #

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/quotapath-deal-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

quotapath-deal-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: QuotaPath data Deal API
  description: Documentation for the QuotaPath API
  x-logo:
    url: https://storage.googleapis.com/quotapath-prod-app/qp_logos/logo_primary.png
    href: https://quotapath.com
  version: v1
servers:
- url: https://api.quotapath.com/v1
security:
- token_auth: []
tags:
- name: deal
paths:
  /deal/:
    parameters: []
    get:
      operationId: deal_list
      description: 'List filtered deals or create deal with payload. No query params will list all

        deals. Supported query params are ''id'', ''integration_id'', ''path_id'', and ''user_email''.'
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExternalDeal'
      tags:
      - deal
    post:
      operationId: deal_create
      description: 'List filtered deals or create deal with payload. No query params will list all

        deals. Supported query params are ''id'', ''integration_id'', ''path_id'', and ''user_email''.'
      requestBody:
        $ref: '#/components/requestBodies/ExternalDeal'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalDeal'
      tags:
      - deal
  /deal/bulk/:
    parameters: []
    post:
      operationId: deal_bulk_create
      description: Bulk update or create deals.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalBulkDealInput'
        required: true
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties: {}
      tags:
      - deal
  /deal/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: deal
      description: View for retrieve, update, delete based on deal uuid
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalDeal'
      tags:
      - deal
    put:
      operationId: deal_update
      description: View for retrieve, update, delete based on deal uuid
      requestBody:
        $ref: '#/components/requestBodies/ExternalDeal'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalDeal'
      tags:
      - deal
    patch:
      operationId: deal_partial_update
      description: View for retrieve, update, delete based on deal uuid
      requestBody:
        $ref: '#/components/requestBodies/ExternalDeal'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalDeal'
      tags:
      - deal
    delete:
      operationId: deal_delete
      description: View for retrieve, update, delete based on deal uuid
      responses:
        '204':
          description: ''
      tags:
      - deal
components:
  schemas:
    ExternalDeal:
      required:
      - deal_values
      - name
      - user_email
      type: object
      properties:
        admin_locked:
          title: Admin locked
          type: boolean
        created_date:
          title: Created date
          type: string
          format: date-time
          readOnly: true
        date:
          title: Date
          type: string
          format: date
        deal_values:
          type: array
          items:
            $ref: '#/components/schemas/ExternalDealValue'
          minItems: 1
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        integration_id:
          title: Integration id
          description: Unique foreign key from data-integration, paired with source
          type:
          - string
          - 'null'
          minLength: 1
        integration_source:
          title: Integration source
          description: Source metadata for data-integration, here to keep relevant source info close at hand to the quotapath API/UI, and allow for upsert logic
          type:
          - string
          - 'null'
          enum:
          - api
          - close
          - hubspot
          - salesforce
          - bulk
          - universal
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 255
          minLength: 1
        state:
          title: State
          type: string
          enum:
          - closed
          - open
          - lost
        updated_date:
          title: Updated date
          type: string
          format: date-time
          readOnly: true
        user_email:
          title: User email
          description: deal owner email
          type: string
          format: email
          minLength: 1
        metadata:
          $ref: '#/components/schemas/ExternalDealMetadata'
    ExternalDealMetadata:
      required:
      - date_field_1
      - date_field_2
      - number_field_1
      type:
      - object
      - 'null'
      properties:
        date_field_1:
          title: Date field 1
          type: string
          format: date
        date_field_2:
          title: Date field 2
          type: string
          format: date
        number_field_1:
          title: Number field 1
          type: string
          format: decimal
    ExternalDealValue:
      required:
      - value
      - path_id
      type: object
      properties:
        value:
          title: Value
          description: deal amount as number
          type: number
        path_id:
          title: Path id
          description: path this dealvalue applies to
          type: string
          format: uuid
    ExternalBulkDeal:
      required:
      - deal_values
      - name
      - user_email
      type: object
      properties:
        admin_locked:
          title: Admin locked
          type: boolean
        created_date:
          title: Created date
          type: string
          format: date-time
          readOnly: true
        date:
          title: Date
          type: string
          format: date
        deal_values:
          type: array
          items:
            $ref: '#/components/schemas/ExternalDealValue'
          minItems: 1
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        integration_id:
          title: Integration id
          description: Unique foreign key from data-integration, paired with source
          type:
          - string
          - 'null'
          minLength: 1
        integration_source:
          title: Integration source
          description: Source metadata for data-integration, here to keep relevant source info close at hand to the quotapath API/UI, and allow for upsert logic
          type:
          - string
          - 'null'
          enum:
          - api
          - close
          - hubspot
          - salesforce
          - bulk
          - universal
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 255
          minLength: 1
        state:
          title: State
          type: string
          enum:
          - closed
          - open
          - lost
        updated_date:
          title: Updated date
          type: string
          format: date-time
          readOnly: true
        user_email:
          title: User email
          description: deal owner email
          type: string
          format: email
          minLength: 1
        metadata:
          $ref: '#/components/schemas/ExternalDealMetadata'
    ExternalBulkDealInput:
      required:
      - deals
      type: object
      properties:
        deals:
          type: array
          items:
            $ref: '#/components/schemas/ExternalBulkDeal'
  requestBodies:
    ExternalDeal:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ExternalDeal'
      required: true
  securitySchemes:
    token_auth:
      type: apiKey
      name: Authorization
      in: header
      description: 'API Key authentication header. Prefix QuotaPath-generated api key with ''Token '' in Authorization header value. Example: ''Token abcdef12345'''