Middesk subpackage_signals API
The subpackage_signals API from Middesk — 2 operation(s) for subpackage_signals.
The subpackage_signals API from Middesk — 2 operation(s) for subpackage_signals.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/middesk-subpackage-signals-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Middesk subpackage_actions Subpackage Signals API
version: 1.0.0
servers:
- url: https://api.middesk.com
description: Default
tags:
- name: subpackage_signals
paths:
/v1/signals:
get:
operationId: list-signals
summary: List signals
tags:
- subpackage_signals
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: q
in: query
description: Search query
required: false
schema:
type: string
- name: external_id
in: query
description: Filter by external ID
required: false
schema:
type: string
- name: start_date
in: query
description: Start date filter (YYYY-MM-DD)
required: false
schema:
type: string
- name: end_date
in: query
description: End date filter (YYYY-MM-DD)
required: false
schema:
type: string
- name: starting_at
in: query
description: Start timestamp filter
required: false
schema:
type: string
- name: ending_at
in: query
description: End timestamp filter
required: false
schema:
type: string
- name: batch_id
in: query
description: Filter by batch ID
required: false
schema:
type: string
- name: model_slug
in: query
description: Filter by model slug
required: false
schema:
type: string
- name: reason_codes
in: query
description: Filter by reason codes
required: false
schema:
type: string
- name: Authorization
in: header
description: Bearer authentication
required: true
schema:
type: string
responses:
'200':
description: signals list
content:
application/json:
schema:
$ref: '#/components/schemas/type_signals_ListSignalsResponse'
post:
operationId: create-signal
summary: Create a signal
tags:
- subpackage_signals
parameters:
- name: Authorization
in: header
description: Bearer authentication
required: true
schema:
type: string
responses:
'201':
description: signal created
content:
application/json:
schema:
description: Any type
'422':
description: invalid request
content:
application/json:
schema:
description: Any type
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: Company name
tin:
type: string
description: Tax identification number
external_id:
type: string
description: External identifier
model_slug:
type: string
description: Scoring model slug
addresses:
type: array
items:
type: string
description: Array of addresses
people:
type: array
items:
type: string
description: Array of people names
required:
- name
- addresses
/v1/signals/{id}:
get:
operationId: get-signal
summary: Retrieve a signal
tags:
- subpackage_signals
parameters:
- name: id
in: path
description: Signal ID
required: true
schema:
type: string
- name: Authorization
in: header
description: Bearer authentication
required: true
schema:
type: string
responses:
'200':
description: signal found
content:
application/json:
schema:
$ref: '#/components/schemas/type__Signal'
'404':
description: signal not found
content:
application/json:
schema:
$ref: '#/components/schemas/type__ErrorResponse'
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__SignalReasonsItemCategory:
type: string
enum:
- identification
- verification
- evaluation
title: SignalReasonsItemCategory
type_signals_ListSignalsResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/type__Signal'
object:
type: string
has_more:
type: boolean
total_count:
type: integer
required:
- object
- has_more
title: ListSignalsResponse
type__SignalReasonsItemCode:
type: string
enum:
- I301
- I302
- I304
- I102
- I103
- I107
- I108
- I109
- I111
- I601
- I603
- I201
- I202
- I203
- I204
- V010
- V011
- V101
- V102
- V103
- V104
- V501
- V502
- V503
- V505
- V748
- V749
- V750
- V751
- V752
- V753
- V801
- V1101
- V1201
- V1302
- E500
- E501
- E502
- E503
- E1101
- E1102
- E1201
title: SignalReasonsItemCode
type__SignalRequester:
type: object
properties:
id:
type: string
format: uuid
type:
type: string
name:
type: string
required:
- id
- type
- name
title: SignalRequester
type__Signal:
type: object
properties:
object:
type: string
id:
type: string
format: uuid
name:
type: string
tin:
type:
- string
- 'null'
external_id:
type:
- string
- 'null'
model_slug:
type: string
score:
type:
- number
- 'null'
format: double
business_id:
type:
- string
- 'null'
format: uuid
batch_id:
type:
- string
- 'null'
format: uuid
requester:
$ref: '#/components/schemas/type__SignalRequester'
reasons:
type: array
items:
$ref: '#/components/schemas/type__SignalReasonsItem'
addresses:
type: array
items:
type: string
people:
type: array
items:
type: string
created_at:
type: string
format: date-time
required:
- object
- id
- name
- created_at
title: Signal
type__SignalReasonsItem:
type: object
properties:
category:
$ref: '#/components/schemas/type__SignalReasonsItemCategory'
group:
type: string
description:
type: string
code:
$ref: '#/components/schemas/type__SignalReasonsItemCode'
importance:
type: number
format: double
required:
- category
- group
- description
- code
title: SignalReasonsItem
securitySchemes:
bearer_auth:
type: http
scheme: bearer