Platform Department Qualification Levels
Function-calling namespace: platformDepartmentQualificationLevels
- Base URL:
https://api.aivida.in - Engine endpoint:
POST /api - Auth: Stack token middleware enabled in
optionalmode. - Send token in header:
x-stack-access-token: <access_token>(orAuthorization: Bearer <access_token>). - In
optionalmode: no token is allowed; invalid token is rejected with401.
create
Source: backend/endpoints/platform-department-qualification-levels/create
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
departmentId | string | Yes | - |
qualificationName | string | Yes | max: 255 |
sortOrder | integer | No | - |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "create",
"data": {
"departmentId": "department_123",
"qualificationName": "value"
}
}'Example Response
{ "status": "ok", "data": {} }delete
Source: backend/endpoints/platform-department-qualification-levels/delete
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
id | string | Yes | - |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "delete",
"data": {
"id": "id_123"
}
}'Example Response
{ "status": "ok", "data": {} }getById
Source: backend/endpoints/platform-department-qualification-levels/get-by-id
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
id | string | Yes | - |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "getById",
"data": {
"id": "id_123"
}
}'Example Response
{ "status": "ok", "data": {} }listByDepartment
Source: backend/endpoints/platform-department-qualification-levels/list-by-department
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
departmentId | string | Yes | - |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "listByDepartment",
"data": {
"departmentId": "department_123"
}
}'Example Response
{ "status": "ok", "data": {} }listWithDocuments
Source: backend/endpoints/platform-department-qualification-levels/list-with-documents
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
departmentId | string | Yes | - |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "listWithDocuments",
"data": {
"departmentId": "department_123"
}
}'Example Response
{ "status": "ok", "data": {} }update
Source: backend/endpoints/platform-department-qualification-levels/update
Input Fields
| Field | Type | Required | Constraints |
|---|---|---|---|
id | string | Yes | - |
qualificationName | string | No | max: 255; nullable |
sortOrder | integer | No | nullable |
isActive | boolean | No | nullable |
Example Request
curl -X POST https://api.aivida.in/api \
-H "Content-Type: application/json" \
-H "x-stack-access-token: <access_token_optional>" \
-d '{
"namespace": "platformDepartmentQualificationLevels",
"apiName": "update",
"data": {
"id": "id_123"
}
}'Example Response
{ "status": "ok", "data": {} }