GET
/
evaluation-platform
/
constants
/
Get a list of available constants required in the evaluation.
curl --request GET \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/constants/ \
  --header 'Authorization: Bearer <token>'
{
  "subjects": {
    "1": "Science",
    "2": "Math",
    "3": "English",
    "4": "Hindi"
  },
  "grade": {
    "1": "First",
    "2": "Second",
    "3": "Third",
    "4": "Fourth",
    "5": "Fifth",
    "6": "Sixth",
    "7": "Seventh",
    "8": "Eighth",
    "9": "Ninth",
    "10": "Tenth",
    "11": "Eleventh",
    "12": "Twelfth"
  },
  "examType": {
    "1": "Pre Boards"
  },
  "fileType": {
    "1": "pdf",
    "2": "docx",
    "3": "jpeg"
  },
  "fileStatus": {
    "0": "Open",
    "1": "In Progress",
    "2": "Completed",
    "3": "Failed"
  },
  "queryTypes": {
    "1": "Classification",
    "2": "Re-evaluation Request",
    "3": "Other Concerns"
  },
  "queryStatus": {
    "1": "Submitted",
    "2": "In Review",
    "3": "Resolved"
  },
  "publishTypeEntity": [
    "pre-publish",
    "final-publish"
  ],
  "updateEntityType": [
    {
      "type": "question",
      "fields": [
        "text",
        "marks",
        "isApproved"
      ]
    },
    {
      "type": "parentQuestion",
      "fields": [
        "text",
        "marks",
        "isApproved"
      ]
    },
    {
      "type": "modelAnswer",
      "fields": [
        "text",
        "stepMarking",
        "isApproved"
      ]
    },
    {
      "type": "answer",
      "fields": [
        "text",
        "marks",
        "isApproved",
        "updateReason"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful response with metadata.

The response is of type object.