PracticePanther Item API

The Item API from PracticePanther — 2 operation(s) for item.

Operations 5

GET /api/item/{guid} Returns a item #
GET /api/item OData end point to get a list of all items #
PUT /api/item Updates an existing item #
POST /api/item Created a new item #
DELETE /api/item Marks an existing item as deleted #

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/practicepanther-item-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

practicepanther-item-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Legacy API (v1) Account Item API
  description: ''
servers:
- url: https://app.practicepanther.com
tags:
- name: Item
paths:
  /api/item/{guid}:
    get:
      tags:
      - Item
      summary: Returns a item
      operationId: Item_GetItem
      parameters:
      - name: guid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
      security:
      - oauth2:
        - full
  /api/item:
    get:
      tags:
      - Item
      summary: OData end point to get a list of all items
      operationId: Item_GetItems
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemDTO'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemDTO'
      security:
      - oauth2:
        - full
    put:
      tags:
      - Item
      summary: Updates an existing item
      operationId: Item_PutItem
      requestBody:
        $ref: '#/components/requestBodies/ItemDTO'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
      security:
      - oauth2:
        - full
    post:
      tags:
      - Item
      summary: Created a new item
      operationId: Item_PostItem
      requestBody:
        $ref: '#/components/requestBodies/ItemDTO'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
      security:
      - oauth2:
        - full
    delete:
      tags:
      - Item
      summary: Marks an existing item as deleted
      operationId: Item_DeleteItem
      parameters:
      - name: guid
        in: query
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemDTO'
      security:
      - oauth2:
        - full
components:
  schemas:
    UserRef:
      type: object
      properties:
        guid:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        displayName:
          description: ' '
          type: string
          readOnly: true
        name:
          description: ' '
          type: string
          readOnly: true
        timeZoneId:
          type: string
    SalesTaxRef:
      required:
      - name
      - rate
      - isCompound
      type: object
      properties:
        guid:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        rate:
          format: double
          type: number
        isCompound:
          description: If set to true this will be considered to be a "Compound Tax". A compound tax is a special tax that is calculated after and on top of a primary tax. In Canada, Quebec and Prince Edward Island use compound taxes of 8.5% and 10% respectively.
          type: boolean
    ItemDTO:
      required:
      - salePrice
      - name
      type: object
      properties:
        description:
          type: string
        code:
          type: string
        salePrice:
          format: double
          type: number
        isOverrideHourlyRate:
          type: boolean
        isDeleted:
          description: ' '
          type: boolean
          readOnly: true
        createdDate:
          format: date-time
          description: ' '
          type: string
          readOnly: true
        lastModifiedDate:
          format: date-time
          description: ' '
          type: string
          readOnly: true
        createdBy:
          $ref: '#/components/schemas/UserRef'
        lastModifiedBy:
          $ref: '#/components/schemas/UserRef'
        tax1Guid:
          format: uuid
          description: 'Used to set the reference in POST and PUT '
          type: string
          example: 00000000-0000-0000-0000-000000000000
        tax1:
          $ref: '#/components/schemas/SalesTaxRef'
        tax2Guid:
          format: uuid
          description: 'Used to set the reference in POST and PUT '
          type: string
          example: 00000000-0000-0000-0000-000000000000
        tax2:
          $ref: '#/components/schemas/SalesTaxRef'
        chartOfAccountId:
          format: int64
          type: integer
        chartOfAccountGuid:
          format: uuid
          description: 'Used to set the reference in POST and PUT '
          type: string
          example: 00000000-0000-0000-0000-000000000000
        chartOfAccountName:
          type: string
        guid:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
  requestBodies:
    ItemDTO:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ItemDTO'
        text/json:
          schema:
            $ref: '#/components/schemas/ItemDTO'
        application/x-www-form-urlencoded:
          schema:
            $ref: '#/components/schemas/ItemDTO'
      required: true
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 - Authorization Code Grant
      flows:
        authorizationCode:
          authorizationUrl: /OAuth/Authorize
          tokenUrl: /OAuth/Token
          scopes:
            full: Read/Write access to all resources