Skip to main content

Reset An Onboarding Step

This endpoint reset a specific onboarding step. It's available only in stage.

info

This operation requires authentication. The logged user must be the creator of the community (id=1).

warning

The onboarding APIs are not available for Enterprise plans; in particular this API is available only in the Stage and Dev environments to simplify development and integration with the PWA.

HTTP Request

POST /api/v2/onboarding/{id}/reset/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this onboarding step

Example Request

const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/onboarding/{id}/reset/',
{
method: 'POST',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeOnboarding Step