Skip to main content
POST
/
api
/
user
/
questions
List active onboarding questions for the requested type.
curl --request POST \
  --url https://pria.praxislxp.com/api/user/questions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "questionType": "<string>"
}
'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "code": "<string>",
      "question": "<string>",
      "objectif": "<string>",
      "required": true,
      "position": 123,
      "section": 123,
      "mbti": true,
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Body

application/json
questionType
string

Code prefix to filter on (e.g. "INSTITUTION", "CORPORATE"). Omit to return every active question.

Response

200 - application/json

OK

success
boolean
data
object[]
message
string