Skip to main content

Complete An Onboarding Step

This endpoint mark completed a specific onboarding step. Some steps do not allow this api call to be performed. In particular for the "contents" and "categories" steps use the api call Start An Onboarding Step. Step status should be "not_started" or "failed".

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.

HTTP Request

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

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}/complete/',
{
method: 'POST',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeOnboarding Step