filled requirements

This commit is contained in:
jp-karthik 2022-05-29 12:21:21 +05:30
parent c850430c0f
commit 2583f502c4
1 changed files with 5 additions and 6 deletions

View File

@ -942,19 +942,19 @@ You may see some different errors which can be seen [here](#common-errors)
## `api/admin/submitApplication` ## `api/admin/submitApplication`
This api is used to This api is used to submit a students application
Request_Body: Request_Body:
```json ```json
{ {
"applications_id": "", "applications_id": "Q54IRZZMC3RP8F6",
"student_id": "", "student_id": "200010022",
"opening_id": "Q54IRZZMC3RP8F6", "opening_id": "Q54IRZZMC3RP8F6",
"additional_info": { "additional_info": {
"School": "Lions International", "School": "Lions International",
"City": "Banglore" "City": "Banglore"
} },
"resume_file_name": "8KIOT3PW1JIS718_CSE-V-SEM.pdf" "resume_file_name": "8KIOT3PW1JIS718_CSE-V-SEM.pdf"
} }
``` ```
@ -966,8 +966,7 @@ Response is a Json with these fields
```json ```json
{ {
"action": "Add Student Application", "action": "Add Student Application",
"message": "Application Added", "message": "Application Added"
"applications": []
} }
``` ```