fields updated
This commit is contained in:
parent
f95c4db108
commit
e0e1464965
|
@ -1267,7 +1267,7 @@ Request_Body:
|
||||||
|
|
||||||
### Response
|
### Response
|
||||||
|
|
||||||
Response is a Json with these fields
|
Response is a Json with these fields when the application is found.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
@ -1287,14 +1287,30 @@ Response is a Json with these fields
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Response is a Json with these fields when the applciation is not found.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"action": "Get Student Application",
|
||||||
|
"application_found": "false",
|
||||||
|
"student_details": {
|
||||||
|
"name": "John",
|
||||||
|
"batch": "2020",
|
||||||
|
"branch": "MMAE",
|
||||||
|
"resume_list":
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Status Codes
|
### Status Codes
|
||||||
|
|
||||||
The possible responses for this api request are as follows
|
The possible responses for this api request are as follows
|
||||||
|
|
||||||
| Status Codes | Possible Messages |
|
| Status Codes | Possible Messages |
|
||||||
| --------------- | ---------------------- |
|
| --------------- | ----------------------- |
|
||||||
| 200 OK | `` |
|
| 200 OK | `` |
|
||||||
| 400 BAD_REQUEST | `Something Went Wrong` |
|
| 400 BAD_REQUEST | `Something Went Wrong` |
|
||||||
|
| 404 NOT_FOUND | `Application not found` |
|
||||||
|
|
||||||
You may see some different errors which can be seen [here](#common-errors)
|
You may see some different errors which can be seen [here](#common-errors)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue