POST api/Account/GetLoginAccountDetails
Request Information
URI Parameters
None.
Body Parameters
InputViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PolicyId | string |
None. |
|
| LastName | string |
None. |
|
| DateOfBirth | date |
None. |
|
| UserToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PolicyId": "sample string 1",
"LastName": "sample string 2",
"DateOfBirth": "2026-04-05T01:36:06.8005158-07:00",
"UserToken": "sample string 4"
}
application/xml, text/xml
Sample:
<InputViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.AS.StudentWaiverPortal.API.Areas.Account.Models"> <DateOfBirth>2026-04-05T01:36:06.8005158-07:00</DateOfBirth> <LastName>sample string 2</LastName> <PolicyId>sample string 1</PolicyId> <UserToken>sample string 4</UserToken> </InputViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>