GET api/Authentication/Seamless/Verify/ForRep/{guid}
Allows the returning of a user (Rep) information when attempting to transfer login information seamlessly bewtween other Freedom applications.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| guid |
A string of unique characters used to verify the authentication of the attempted user (Rep) login. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
SeamlessAuthenticationViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| access_token | string |
None. |
|
| refresh_token | string |
None. |
|
| userName | string |
None. |
|
| userType | string |
None. |
|
| hasReciprocalID | boolean |
None. |
|
| canEnrollAsRep | boolean |
None. |
Response Formats
application/xml, text/xml
Sample:
<SeamlessAuthenticationViewModel> <access_token>sample string 1</access_token> <refresh_token>sample string 2</refresh_token> <userName>sample string 3</userName> <userType>sample string 4</userType> <hasReciprocalID>True</hasReciprocalID> <canEnrollAsRep>True</canEnrollAsRep> </SeamlessAuthenticationViewModel>
application/json, text/json
Sample:
{
"access_token": "sample string 1",
"refresh_token": "sample string 2",
"userName": "sample string 3",
"userType": "sample string 4",
"hasReciprocalID": true,
"canEnrollAsRep": true
}