Skip to content

Update the account onboarding checklist

Request

Security
bearerToken
Bodyapplication/jsonrequired
hasCompletedInitialImportboolean or null
Example:true
hasLoggedInboolean or null
Example:true
hasUploadedSomeFilesboolean or null
Example:true
hasAddedSomeAttributesboolean or null
Example:true
hasSignedUpboolean or null
Example:true
hasCustomisedThemeboolean or null
Example:true
hasInvitedUsersboolean or null
Example:true
curl -i -X PATCH \
  https://api-v2.dash.app/onboarding-checklist \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "hasCompletedInitialImport": true,
    "hasLoggedIn": true,
    "hasUploadedSomeFiles": true,
    "hasAddedSomeAttributes": true,
    "hasSignedUp": true,
    "hasCustomisedTheme": true,
    "hasInvitedUsers": true
  }'

Responses

Success

Bodyapplication/json
resultobjectrequired
permittedActionsArray of objectsrequired
Response
{ "result": { "accountId": "cfb665ca-ce35-4418-b9d5-70ee815db4bd", "hasCompletedInitialImport": true, "hasLoggedIn": true, "hasUploadedSomeFiles": true, "hasAddedSomeAttributes": true, "hasSignedUp": true, "hasCustomisedTheme": true, "hasInvitedUsers": true }, "permittedActions": [ {} ] }