ECI Solutions Inventory Purchasers API

The Inventory Purchasers API from ECI Solutions — 1 operation(s) for inventory purchasers.

Operations 2

PUT /inventory/{inventoryId}/purchasers Put inventory purchasers #
GET /inventory/{inventoryId}/purchasers Get inventory purchasers #

Documentation

Specifications

Other Resources

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/eci-solutions-inventory-purchasers-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

eci-solutions-inventory-purchasers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lasso Inventory Purchasers API
  description: 'Overview


    Use this API to manage Registrant, Project, and Inventory data within Lasso CRM.'
  version: 1.0.39
servers:
- url: https://api.lassocrm.com/v1
  description: Production endpoint
tags:
- name: Inventory Purchasers
paths:
  /inventory/{inventoryId}/purchasers:
    parameters:
    - in: path
      name: inventoryId
      schema:
        type: string
      required: true
    put:
      tags:
      - Inventory Purchasers
      operationId: put_inventory_purchasers
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/PurchaserCreate'
      security:
      - JwtAuthorizer: []
      responses:
        200:
          description: Purchasers successfully set
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Purchaser'
        400:
          $ref: '#/components/responses/BadRequest'
        401:
          $ref: '#/components/responses/Unauthorized'
        403:
          $ref: '#/components/responses/Forbidden'
        404:
          $ref: '#/components/responses/NotFound'
        500:
          $ref: '#/components/responses/InternalServerError'
      summary: Put inventory purchasers
      x-summary-source: derived
    get:
      tags:
      - Inventory Purchasers
      operationId: get_inventory_purchasers
      security:
      - JwtAuthorizer: []
      responses:
        200:
          description: Purchasers associated with this inventory
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Purchaser'
        401:
          $ref: '#/components/responses/Unauthorized'
        403:
          $ref: '#/components/responses/Forbidden'
        404:
          $ref: '#/components/responses/NotFound'
        500:
          $ref: '#/components/responses/InternalServerError'
      summary: Get inventory purchasers
      x-summary-source: derived
components:
  responses:
    BadRequest:
      description: 'The request could not be processed due to invalid input:

        - Is the request payload malformed?

        - Are all required fields present?

        - Are field values of the expected type (ie, number format, date format)?

        - Are field values within the expected constraints (ie, greater than max size of string)?

        - Are query params of the expected format?


        Check the body model for more documentation on field constraints and limits.

        '
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/StandardError'
    Unauthorized:
      description: The request has not been fulfilled because it lacks valid authentication credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/StandardError'
    InternalServerError:
      description: Receiving a 5xx response indicates an error on Lasso's end. Please contact us to report the problem
    NotFound:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/StandardError'
    Forbidden:
      description: The provided authentication credentials does not have sufficient privileges to access this resource
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/StandardError'
  schemas:
    PurchaserCreate:
      title: Purchaser
      type: object
      required:
      - registrantId
      properties:
        registrantId:
          type: string
          example: 1
        purchaserType:
          type: string
          example: Assignee
        purchaserReason:
          type: string
          example: Investment Property
    StandardError:
      type: object
      title: Standard Error
      description: A standard error response format.
      properties:
        errorCode:
          type: integer
          example: 4xx
        error:
          type: string
          description: A summary of the error
          example: A summary of the error
        errorMessage:
          type: string
          description: Details of the error
          example: Details of the error
    Purchaser:
      title: Purchaser
      type: object
      required:
      - registrantId
      properties:
        registrantId:
          type: string
          example: 1
        firstName:
          type: string
          example: John
        lastName:
          type: string
          example: Doe
        purchaserType:
          type: string
          example: Assignee
        purchaserReason:
          type: string
          example: Investment Property
        dateAssigned:
          type: string
          description: Date in the ISO 8601 UTC format
          example: '2017-08-30T05:48:35Z'
  securitySchemes:
    JwtAuthorizer:
      type: http
      scheme: bearer
      bearerFormat: JWT