Mark setup wizard dismissed
POST
/setup/skip
const url = 'https://example.com/api/v1/setup/skip';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/setup/skipMarks the setup wizard dismissed.
Terminal and idempotent by design: unlike GET/PATCH /state, this
endpoint does not require the wizard to still be in progress, so a
repeated call succeeds instead of rejecting once setup is already
dismissed.
Responses
Section titled “Responses”Wizard marked dismissed
Media typeapplication/json
object
wizard
required
object
completed
required
Whether the wizard has been marked completed
boolean
dismissedAt
required
Timestamp the wizard was dismissed, or null if never dismissed
string format: date-time
currentStep
required
Ordered setup wizard step
string
Example
{ "wizard": { "currentStep": "welcome" }}