Middesk subpackage_informationRequests API

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

Operations 1

GET /v1/partner/exceptions List Information Requests #

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-informationrequests-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-informationrequests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Middesk subpackage_actions Subpackage Information Requests API
  version: 1.0.0
servers:
- url: https://api.middesk.com
  description: Default
tags:
- name: subpackage_informationRequests
paths:
  /v1/partner/exceptions:
    get:
      operationId: list-information-requests
      summary: List Information Requests
      tags:
      - subpackage_informationRequests
      parameters:
      - name: page
        in: query
        description: Page number
        required: false
        schema:
          type: integer
      - name: per_page
        in: query
        description: Items per page
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: information requests list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type_informationRequests_ListInformationRequestsResponse'
components:
  schemas:
    type_informationRequests_ListInformationRequestsResponse:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/type__AgentInformationRequest'
        url:
          type: string
        has_more:
          type: boolean
        count:
          type: integer
      title: ListInformationRequestsResponse
    type__AgentInformationRequestContact:
      type: object
      properties:
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
          format: email
        phone:
          type: string
      title: AgentInformationRequestContact
    type__AgentInformationRequestCompany:
      type: object
      properties:
        id:
          type: string
          format: uuid
        legal_name:
          type:
          - string
          - 'null'
        dba_name:
          type:
          - string
          - 'null'
        external_id:
          type:
          - string
          - 'null'
      required:
      - id
      title: AgentInformationRequestCompany
    type__AgentInformationRequest:
      type: object
      properties:
        object:
          type: string
        id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        url:
          type:
          - string
          - 'null'
          format: uri
        information_requested:
          type: string
          description: Description of what information is required
        contact:
          $ref: '#/components/schemas/type__AgentInformationRequestContact'
        company:
          $ref: '#/components/schemas/type__AgentInformationRequestCompany'
      required:
      - object
      - id
      - created_at
      - information_requested
      - company
      title: AgentInformationRequest
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer