GET api/Authenticate/{id}
Get Authenticated User Information for Q GUID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
GUID passed from Q to 3rd party site for log in authentication. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Get Authenticated User Information for Q GUID.
LoginParms| Name | Description | Type | Additional information |
|---|---|---|---|
| GUID | string |
None. |
|
| FacultyUnique | integer |
None. |
|
| TrackId | integer |
None. |
|
| SystemDate | string |
None. |
|
| ContactId | integer |
None. |
|
| StudentId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"GUID": "sample string 1",
"FacultyUnique": 1,
"TrackId": 1,
"SystemDate": "sample string 2",
"ContactId": 1,
"StudentId": 1
}
application/xml, text/xml
Sample:
<LoginParms xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <GUID>sample string 1</GUID> <FacultyUnique>1</FacultyUnique> <TrackId>1</TrackId> <SystemDate>sample string 2</SystemDate> <ContactId>1</ContactId> <StudentId>1</StudentId> </LoginParms>