Authentication
Before accessing any endpoints, clients need to obtain an access token through the authentication process, using Username and Password The access token serves as a credential to authenticate the client’s requests to the API.
POST
Obtain Access Token
Body
application/x-www-form-urlencoded
Previous
POST - ExamThe POST /evaluation-platform/v1/exam endpoint allows you to create a new exam for a specific class, subject, and exam type. Once an exam is created successfully, it returns a unique examId and status. <br/>
This API allows a teacher to create a new exam for a specific class, subject, and exam type. The newly created exam is initially empty and can be configured further by associating documents or additional metadata.
**Scenario: Creating a New Exam for a Class**
A teacher needs to set up a new exam for 'Class 10' in the subject 'Science' and exam type 'Pre Boards.'
- The teacher uses this API to create an empty exam by providing the required class, subject, and exam type.
**Response:**
- A unique `examId` (e.g., `d19e6868-98dd-4274-a2a5-4a616dd93ea7`) is returned.
- The `status` field indicates that the exam creation was successful.
**Next Steps:**
- The teacher can use the `examId` in subsequent APIs to upload relevant documents or configure the exam further
Next
Obtain Access Token