Cases
- POSTCount cases by status
- GETGet weekly case counts
- GETGet example case for demonstration
- GETGet all detections for a case
- DELDelete a case
- PATCHUpdate case details
- POSTCalculate mean time to resolution
- POSTReingest all detections for a case
- GETGet related cases
- GETGet threat indicators for a case
- POSTSearch and list cases
- POSTSubmit feedback for AI case summary
- GETGet case by ID or SID
Integration
- POSTSearch integrations
- POSTSearch integration logs
- POSTGet daily integration log counts
- PUTAdd API key integration
- PUTAdd other integration type
- PUTAdd basic authentication integration
- POSTGet OAuth installation URL
- GETGet all integration configurations
- GETGet integration by ID
- DELDelete integration
- PATCHUpdate integration
- GETGet integration configuration by type
- GETHandle OAuth redirect
- POSTVerify JWT token
- GETHandle authenticated OAuth redirect
- POSTInvoke integration action
- GETHandle OAuth authenticated redirect
- GETGet AWS remote API key
- PUTRegister AWS integration remotely
- POSTCheck integration entitlements
- POSTHandle integration webhook
- POSTHandle chat operations
- GETGet ConnectWise PSA configuration
- PUTUpdate ConnectWise PSA configuration
- GETGet ConnectWise companies
- GETGet ConnectWise boards
- GETGet board ticket types
- GETGet board ticket statuses
- GETGet ConnectWise priorities
- GETGet Jira configuration
- PUTUpdate Jira configuration
- GETGet Jira projects
- GETGet Jira issue types
Asset
Team
- POSTGet team statistics report
- GETGet current team information
- PUTCreate a new team
- POSTSearch service provider teams
- PATCHUpdate team information
- GETGet team by any UUID
- GETGet all teams
- POSTSearch team members
- POSTSearch system logs
- PUTAdd operating team
- DELRemove operating team
- PUTInvite user to team
- PUTResend invitation to user
- GETGet platform logos
- PUTUpload platform logo
- DELDelete platform logo
Users
Detection
Integration
Add API key integration
PUT
/
integration
/
api-key
Copy
curl --request PUT \
--url https://api.wirespeed.co/integration/api-key \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "<string>",
"fields": [
{
"name": "<string>",
"value": "<string>"
}
]
}'
Copy
{
"id": "<string>",
"platform": "microsoft-teams",
"enabled": true,
"teamId": "<string>",
"teamName": "<string>",
"config": {
"authType": "oauth2",
"name": "<string>",
"oauthRequiresRedirect": true,
"customFields": [
{
"slug": "<string>",
"display": "<string>",
"type": "<string>",
"required": true,
"description": "<string>",
"validationPattern": "<string>",
"validationMinLength": 123,
"validationMaxLength": 123,
"source": "<string>"
}
],
"requiresConfiguration": true,
"logo": "<string>",
"logoLight": "<string>",
"logoDark": "<string>",
"beta": true,
"description": "<string>",
"slug": "<string>",
"internalCreds": true,
"docsUrl": "<string>",
"default": true
},
"permissionsUpdateAvailable": true,
"requiresConfiguration": "<string>",
"identityFields": {}
}
Query Parameters
Available options:
microsoft-teams
, google-alert-center
, reversing-labs
, jamf-protect
, jamf-pro
, thinkst-canary
, box
, hyas-protect
, checkpoint-harmony
, wiz
, microsoft
, ipinfo
, cisco-umbrella
, jira-data-center
, windows-event-logs
, crowdstrike-falcon
, cisco-meraki
, fortianalyzer
, microsoft-entra
, have-i-been-pwned
, manage-engine-ad-audit-plus
, google-directory
, okta
, sentinel-one
, slack
, aws
, kandji
, cisco-catalyst
, connectwise-psa
, email
Body
application/json
Response
200
application/json
The response is of type object
.
Copy
curl --request PUT \
--url https://api.wirespeed.co/integration/api-key \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "<string>",
"fields": [
{
"name": "<string>",
"value": "<string>"
}
]
}'
Copy
{
"id": "<string>",
"platform": "microsoft-teams",
"enabled": true,
"teamId": "<string>",
"teamName": "<string>",
"config": {
"authType": "oauth2",
"name": "<string>",
"oauthRequiresRedirect": true,
"customFields": [
{
"slug": "<string>",
"display": "<string>",
"type": "<string>",
"required": true,
"description": "<string>",
"validationPattern": "<string>",
"validationMinLength": 123,
"validationMaxLength": 123,
"source": "<string>"
}
],
"requiresConfiguration": true,
"logo": "<string>",
"logoLight": "<string>",
"logoDark": "<string>",
"beta": true,
"description": "<string>",
"slug": "<string>",
"internalCreds": true,
"docsUrl": "<string>",
"default": true
},
"permissionsUpdateAvailable": true,
"requiresConfiguration": "<string>",
"identityFields": {}
}
Assistant
Responses are generated using AI and may contain mistakes.