v1

latestOpenAPI 3.1.02026-07-13182388559.6 KB
admin
onboarding

[ADMIN] Get all onboarding questions (including inactive)

get/v1/admin/onboarding/questions

Query parameters

scopestring

Scope: 'user' or 'org' (empty = all)

Response

OK

codeinteger
messagestring
requestIdstring

Example response

{
  "code": 200,
  "data": [
    {
      "createdAt": "2024-01-01T00:00:00Z",
      "id": "onboarding_q1",
      "isActive": true,
      "isRequired": true,
      "questionOrder": 1,
      "questionText": "What brings you to B3OS?",
      "questionType": "text",
      "scope": "user",
      "updatedAt": "2024-01-01T00:00:00Z"
    }
  ],
  "message": "success",
  "requestId": "req_abc123"
}