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>"
}Questions
List active onboarding questions for the requested type.
Returns every active question whose code starts with the supplied
questionType, sorted by position. Used by the create-twin wizard
at /my-profile/create. No pagination — the wizard renders the whole
list at once.
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
JWT token passed in authorization header
Body
application/json
Code prefix to filter on (e.g. "INSTITUTION", "CORPORATE"). Omit to return every active question.
Was this page helpful?
⌘I