Skip to main content
POST
/
integration
/
count
Get integration search count
curl --request POST \
  --url https://api.wirespeed.co/integration/count \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc",
  "includeDisabled": true,
  "healthStatus": [
    "healthy"
  ]
}
'
{
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
size
number
page
number
filter
string
orderBy
string
orderDir
enum<string>
Available options:
asc,
desc
includeDisabled
boolean

Include disabled integrations in search results

healthStatus
enum<string>[]

Filter by health status (multiple allowed)

Available options:
healthy,
unhealthy,
unstable,
unknown

Response

totalCount
number
required

Total count of integrations matching the search criteria