GET api/Vet/V1/Students/Validate?stdid={stdid}&email={email}&dob={dob}&username={username}
Validate if the provided student information is matching to any existing data or not by provided QUERY String.
The combination of 2 matching fields are required.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stdid |
Student Id |
string |
None. |
|
Primary contact email address |
string |
None. |
|
| dob |
Date of birth (e.g. dd/mm/yyyy) |
string |
None. |
| username |
Username that use to login to RTOManager system |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
ValidationResponse object
ValidationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid |
True/False identification |
boolean |
None. |
| Message |
Response text |
string |
None. |
| ReferenceId |
If 'IsValid' id true, ReferenceId will be unique Id representing the person validated. Default is empty. |
string |
None. |
Response Formats
application/json, text/json
{
"IsValid": true,
"Message": "sample string 2",
"ReferenceId": "sample string 3"
}
application/xml, text/xml
<ValidationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DotEdu_WebAPI.Code.Utility"> <IsValid>true</IsValid> <Message>sample string 2</Message> <ReferenceId>sample string 3</ReferenceId> </ValidationResponse>