POST
/
team
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"
}'
{
  "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

Authorization
string
header
required

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.