Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request POST \
--url https://pria.praxislxp.com/api/admin/questions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"minimum": true,
"questionType": "INSTITUTION"
}
'{
"success": true,
"data": [
{
"_id": "6657cb7f4f9e80ae6b52f9f1",
"code": "INSTITUTION_01",
"question": "Who are you?",
"objectif": "Provide a brief description of who you are...",
"required": true,
"position": 1,
"status": "active",
"created": "2024-05-30T00:42:39.441Z",
"section": 2,
"mbti": false
}
]
}Fetches a list of questions used for institutional assessments, with optional filtering for minimal data
curl --request POST \
--url https://pria.praxislxp.com/api/admin/questions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"minimum": true,
"questionType": "INSTITUTION"
}
'{
"success": true,
"data": [
{
"_id": "6657cb7f4f9e80ae6b52f9f1",
"code": "INSTITUTION_01",
"question": "Who are you?",
"objectif": "Provide a brief description of who you are...",
"required": true,
"position": 1,
"status": "active",
"created": "2024-05-30T00:42:39.441Z",
"section": 2,
"mbti": false
}
]
}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.
JWT token passed in x-access-token header
Flag to return minimal question data (bypasses pagination, returns all)
Type of questions to retrieve
INSTITUTION, CORPORATE Page number (1-based, ignored if minimum=true)
x >= 1Number of results per page (ignored if minimum=true)
1 <= x <= 5000Successfully retrieved questions
Indicates if the request was successful
Array of questions
Show child attributes
Total number of matching questions (omitted if minimum=true)
Whether more results are available (omitted if minimum=true)
Current page number (omitted if minimum=true)
Number of results per page (omitted if minimum=true)
Response message
Was this page helpful?