-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.http
More file actions
69 lines (61 loc) · 1.69 KB
/
app.http
File metadata and controls
69 lines (61 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
### Register new user
POST http://localhost:3500/register
Content-Type: application/json
{
"username": "editoruser",
"email": "editor@example.com",
"password": "123456"
}
### Login to get JWT
POST http://localhost:3500/auth
Content-Type: application/json
{
"username": "editoruser",
"password": "123456"
}
### 🔧 Create a new program
POST http://localhost:3500/api/dashboard/program
Authorization: Bearer []
Content-Type: application/json
{
"activistID": "A123456",
"schoolNo": "SCH98765",
"dpc_name": "IIT Guwahati",
"udise_code": "2829282",
"yearOfImplementation": "2025",
"dpo": true,
"schoolName": "ZPHS Koyyalagudem",
"cityVillageName": "Koyyalagudem",
"blockTaluka": "Koyyalagudem Mandal",
"district": "West Godavari",
"region": "Andhra Pradesh",
"trade": "AgriTech",
"compositeOrNot": false,
"existingOrNew": "new",
"division": "South",
"principalName": "Meghana Jammu",
"principalMobile": "9876543210",
"vtName": "Shikhar Mishra",
"vtMobile": "9876501234",
"jobRole": "Full Stack Developer",
"managementOption": "PPP",
"googleFormsReceived": true,
"workshopSetup": true,
"syllabusSoftCopyReceived": true,
"guestLectureStarted": false,
"onlineCommunityClass": true,
"internship": true,
"goodPractices": "Students created a weather tracker",
"startDate": "2025-07-05",
"endDate": "2025-07-30",
"remark": "Excellent engagement by school",
"mode": "online",
"physicalClasses": false,
"communityVisit": true,
"lab": true,
"toolsAvailability": true,
"books": "Provided by state board",
"resourceRequired": "More IoT kits",
"rawMaterial": "Sensors, Breadboards",
"activistUpdates": "Weekly updates from activist on Slack"
}