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

NameDescriptionTypeAdditional information
id

Unique reference id representing student to contact to USI Service and response back the result.
It can be any Id you specify to start the request. Use

string

Required

firstname

Student first/given name
If single name, specify in this field and put 'LastName' field as dot (.).

string

Required

lastname

Student last/family name
If single name, specify in 'firstname field and put this field as dot (.).

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

ObjUSIResponse
NameDescriptionTypeAdditional information
ApplicationId

string

None.

Status

ResponseStatus

None.

ServiceStage

Stage

None.

Message

string

None.

USI

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ApplicationId": "sample string 1",
  "Status": "UNKNOWN",
  "ServiceStage": "Instantiated",
  "Message": "sample string 2",
  "USI": "sample string 3"
}

application/xml, text/xml

Sample:
<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>