GET api/Authentication/Seamless/Verify/ForCustomer/{guid}

Allows the returning of a user (Customer) information when attempting to transfer login information seamlessly between other Freedom applications.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
guid

string

Required

Body Parameters

None.

Response Information

Resource Description

A string of unique characters used to verify the authentication of the attempted user (Customer) login.

SeamlessAuthenticationViewModel
NameDescriptionTypeAdditional 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
}