curl --request GET \
--url https://api.wirespeed.com/team/all \
--header 'Authorization: Bearer <token>'
[
{
"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
}
]
curl --request GET \
--url https://api.wirespeed.com/team/all \
--header 'Authorization: Bearer <token>'
[
{
"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
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object[]
.