Middesk subpackage_identities API

The subpackage_identities API from Middesk — 1 operation(s) for subpackage_identities.

Operations 1

POST /v1/identities/autocomplete Autocomplete business identities #

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/middesk-subpackage-identities-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

middesk-subpackage-identities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Middesk subpackage_actions Subpackage Identities API
  version: 1.0.0
servers:
- url: https://api.middesk.com
  description: Default
tags:
- name: subpackage_identities
paths:
  /v1/identities/autocomplete:
    post:
      operationId: autocomplete-business-identities
      summary: Autocomplete business identities
      description: Search for business identities using partial name matching. Returns matching businesses with names, addresses, people, and entity type.
      tags:
      - subpackage_identities
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: autocomplete results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__BusinessIdentityList'
        '422':
          description: invalid request - name too short
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Business name to search for (minimum 3 characters)
                entity_type:
                  $ref: '#/components/schemas/type_identities_BusinessIdentityRequestParamEntityType'
                  description: Entity type filter
                addresses:
                  type: array
                  items:
                    $ref: '#/components/schemas/type_identities_BusinessIdentityRequestParamAddressesItem'
                  description: Address filters
              required:
              - name
components:
  schemas:
    type__ErrorResponseErrorsItem:
      type: object
      properties:
        message:
          type: string
      required:
      - message
      title: ErrorResponseErrorsItem
    type__ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/type__ErrorResponseErrorsItem'
      required:
      - errors
      title: ErrorResponse
    type__BusinessIdentityAddressesItem:
      type: object
      properties:
        full_address:
          type: string
        address_line1:
          type: string
        address_line2:
          type:
          - string
          - 'null'
        city:
          type: string
        state:
          type: string
        postal_code:
          type: string
        labels:
          type: array
          items:
            type: string
      title: BusinessIdentityAddressesItem
    type__BusinessIdentity:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for this autocomplete result
        names:
          type: array
          items:
            $ref: '#/components/schemas/type__BusinessIdentityNamesItem'
          description: Business names (legal or DBA)
        addresses:
          type: array
          items:
            $ref: '#/components/schemas/type__BusinessIdentityAddressesItem'
          description: Known business addresses
        people:
          type: array
          items:
            $ref: '#/components/schemas/type__BusinessIdentityPeopleItem'
          description: Associated persons
        entity_type:
          oneOf:
          - $ref: '#/components/schemas/type__BusinessIdentityEntityType'
          - type: 'null'
          description: Business entity type
      description: Business result from autocomplete search
      title: BusinessIdentity
    type__BusinessIdentityPeopleItem:
      type: object
      properties:
        name:
          type: string
        titles:
          type: array
          items:
            type: string
      title: BusinessIdentityPeopleItem
    type_identities_BusinessIdentityRequestParamAddressesItem:
      type: object
      properties:
        address_line1:
          type: string
        city:
          type: string
        state:
          type: string
        postal_code:
          type: string
      title: BusinessIdentityRequestParamAddressesItem
    type_identities_BusinessIdentityRequestParamEntityType:
      type: string
      enum:
      - LLC
      - CORPORATION
      - NON_PROFIT
      - PARTNERSHIP
      - TRUST
      description: Entity type filter
      title: BusinessIdentityRequestParamEntityType
    type__BusinessIdentityNamesItemType:
      type: string
      enum:
      - legal
      - dba
      title: BusinessIdentityNamesItemType
    type__BusinessIdentityNamesItem:
      type: object
      properties:
        name:
          type: string
        type:
          $ref: '#/components/schemas/type__BusinessIdentityNamesItemType'
      title: BusinessIdentityNamesItem
    type__BusinessIdentityList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/type__BusinessIdentity'
      description: List of business identity autocomplete results
      title: BusinessIdentityList
    type__BusinessIdentityEntityType:
      type: string
      enum:
      - LLC
      - CORPORATION
      - NON_PROFIT
      - PARTNERSHIP
      - TRUST
      description: Business entity type
      title: BusinessIdentityEntityType
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer