Skip to main content

Get An Onboarding Step

This endpoint retrieves a specific onboarding step.

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

GET /api/v2/onboarding/{id}/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this onboarding step

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeOnboarding Step