Skip to main content
PATCH
/
team
/
onboarding
Mark a self-attested onboarding item as complete
curl --request PATCH \
  --url https://api.wirespeed.co/team/onboarding \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "SEE_DETECTIONS"
}
'
{
  "completed": true,
  "items": [
    {
      "type": "CONNECT_INTEGRATION",
      "status": "PENDING",
      "completedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
type
enum<string>
required

Only self-attested onboarding items can be marked complete. Derived items are resolved automatically and cannot be updated via this endpoint

Available options:
SEE_DETECTIONS,
REVIEW_VIP_USERS,
REVIEW_CRITICAL_ENDPOINTS,
REVIEW_CONTAINMENT

Response

completed
boolean
required
items
object[]
required