Check if first-run setup is needed
GET
/v1/setup/status
const url = 'https://example.com/v1/setup/status';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/setup/statusResponses
Section titled “ Responses ”OK
Media type application/json
object
needs_setup
required
True when no tenants exist and setup wizard should be shown.
boolean
Example generated
{ "needs_setup": true}