GET api/V1/StudentOffers/USI?id={id}&firstname={firstname}&lastname={lastname}&dateofbirth={dateofbirth}&usi={usi}
Validate provided student USI before submit the application.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Unique reference id representing student to contact to USI Service and response back the result. |
string |
Required |
firstname |
Student first/given name |
string |
Required |
lastname |
Student last/family name |
string |
Required |
dateofbirth |
Student date of birth |
date |
Required |
usi |
Unique Student Identifier (USI) of the student to verify. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ObjUSIResponse
ObjUSIResponseName | Description | Type | Additional information |
---|---|---|---|
ApplicationId | string |
None. |
|
Status | ResponseStatus |
None. |
|
ServiceStage | Stage |
None. |
|
Message | string |
None. |
|
USI | string |
None. |
Response Formats
application/json, text/json
{ "ApplicationId": "sample string 1", "Status": "UNKNOWN", "ServiceStage": "Instantiated", "Message": "sample string 2", "USI": "sample string 3" }
application/xml, text/xml
<ObjUSIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DotEdu_CricosWebAPI.Models.Classification"> <ApplicationId>sample string 1</ApplicationId> <Message>sample string 2</Message> <ServiceStage>Instantiated</ServiceStage> <Status>UNKNOWN</Status> <USI>sample string 3</USI> </ObjUSIResponse>