mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 00:38:44 +00:00
41 lines
624 B
HTTP
41 lines
624 B
HTTP
@api_HostAddress = http://localhost:5123
|
|
|
|
GET {{api_HostAddress}}/api/student
|
|
Accept: application/json
|
|
|
|
###
|
|
|
|
GET {{api_HostAddress}}/api/student/1001
|
|
Accept: application/json
|
|
|
|
###
|
|
|
|
POST {{api_HostAddress}}/api/student
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"idStudent": 1001,
|
|
"idProgram": 10,
|
|
"identifier": "WIN-1001",
|
|
"programYear": 2026,
|
|
"enrollmentDate": "2026-01-15",
|
|
"nextIepDate": "2028-06-01"
|
|
}
|
|
|
|
###
|
|
|
|
PUT {{api_HostAddress}}/api/student/1001
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"identifier": "WIN-1001-A",
|
|
"programYear": 2027
|
|
}
|
|
|
|
###
|
|
|
|
DELETE {{api_HostAddress}}/api/student/1001
|
|
Accept: application/json
|
|
|
|
###
|