Exam Centre
Base URL: http://192.168.100.250/
Endpoints
Section titled “Endpoints”| Method | Endpoint | Description |
|---|---|---|
| GET | /exam_centres |
List all exam centres (paginated) |
| GET | /exam_centres/{id} |
Get single exam centre |
| POST | /exam_centres |
Create exam centre |
| PUT | /exam_centres/{id} |
Update exam centre |
| DELETE | /exam_centres/{id} |
Delete exam centre |
GET /exam_centres?page=1Accept: application/jsonView Single
Section titled “View Single”GET /exam_centres/{id}Accept: application/jsonCreate
Section titled “Create”POST /exam_centresContent-Type: application/jsonRequest Body:
{ "name": "Bharatpur Exam Centre", "address": "Bharatpur-10, Chitwan"}Update
Section titled “Update”PUT /exam_centres/{id}Content-Type: application/jsonRequest Body:
{ "name": "Bharatpur Exam Centre", "address": "Bharatpur-10, Chitwan"}Delete
Section titled “Delete”DELETE /exam_centres/{id}