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
Get daily integration log counts
POST
/
integration
/
logs
/
daily
Copy
curl --request POST \
--url https://api.wirespeed.co/integration/logs/daily \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"timezone": "<string>",
"type": "error",
"integrationId": "<string>",
"search": "<string>",
"day": "<string>"
}'
Copy
[
{
"count": 123,
"day": "<string>",
"label": "<string>",
"group": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
The response is of type object[]
.
Copy
curl --request POST \
--url https://api.wirespeed.co/integration/logs/daily \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"timezone": "<string>",
"type": "error",
"integrationId": "<string>",
"search": "<string>",
"day": "<string>"
}'
Copy
[
{
"count": 123,
"day": "<string>",
"label": "<string>",
"group": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.