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
Team
Search service provider teams
POST
/
team
Copy
curl --request POST \
--url https://api.wirespeed.co/team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
Copy
{
"data": [
{
"id": "<string>",
"name": "<string>",
"demo": true,
"testMode": true,
"chatOpsWelcomeMessage": "<string>",
"maxChatOpsPerDay": 123,
"maxAutoContainmentsPerDay": 123,
"chatOpsEscalationDelayMinutes": 123,
"securityChatOps": true,
"identityAutoContainment": true,
"endpointAutoContainment": true,
"escalationEmail": "<string>",
"autoContainIdentityNHI": true,
"autoContainIdentityVIP": true,
"autoContainLSTEndpoint": true,
"autoContainEndpointHVA": true,
"autoContainUnmitigatedMalware": true,
"autoContainEndpointServers": true,
"logoUrl": "<string>",
"chatOpsSecondFactor": true,
"stripeCustomer": true,
"chatOpsAccountLockedMessage": "<string>",
"createdAt": "<string>",
"richCaseNotifications": true,
"escalationSubjectLine": "<string>",
"vipChatOps": true,
"managerChatOps": true,
"chatOpsSignature": "<string>",
"chatOpsSubjectLine": "<string>",
"notificationEscalationSeverity": "INFORMATIONAL",
"serviceProvider": true,
"parentTeamName": "<string>",
"parentTeamId": "<string>",
"operatingTeam": true
}
],
"totalCount": 123
}
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/team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
Copy
{
"data": [
{
"id": "<string>",
"name": "<string>",
"demo": true,
"testMode": true,
"chatOpsWelcomeMessage": "<string>",
"maxChatOpsPerDay": 123,
"maxAutoContainmentsPerDay": 123,
"chatOpsEscalationDelayMinutes": 123,
"securityChatOps": true,
"identityAutoContainment": true,
"endpointAutoContainment": true,
"escalationEmail": "<string>",
"autoContainIdentityNHI": true,
"autoContainIdentityVIP": true,
"autoContainLSTEndpoint": true,
"autoContainEndpointHVA": true,
"autoContainUnmitigatedMalware": true,
"autoContainEndpointServers": true,
"logoUrl": "<string>",
"chatOpsSecondFactor": true,
"stripeCustomer": true,
"chatOpsAccountLockedMessage": "<string>",
"createdAt": "<string>",
"richCaseNotifications": true,
"escalationSubjectLine": "<string>",
"vipChatOps": true,
"managerChatOps": true,
"chatOpsSignature": "<string>",
"chatOpsSubjectLine": "<string>",
"notificationEscalationSeverity": "INFORMATIONAL",
"serviceProvider": true,
"parentTeamName": "<string>",
"parentTeamId": "<string>",
"operatingTeam": true
}
],
"totalCount": 123
}
Assistant
Responses are generated using AI and may contain mistakes.