GET api/status/check
Provide information about the current authorization token
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
AuthorizationTokenViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Integrator |
The name of the Integrator making the Request. Maps to the Private Key used for the token. |
string |
None. |
| AdvisorId |
The id of the Advisor the Request is made on behalf Of. |
string |
None. |
| AdvisorName |
The name of the Advisor the Request is made on behalf of. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Integrator": "sample string 1",
"AdvisorId": "sample string 2",
"AdvisorName": "sample string 3"
}
application/xml, text/xml
Sample:
<AuthorizationTokenViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pork.SiteAssess.Integration.Api.Models"> <AdvisorId>sample string 2</AdvisorId> <AdvisorName>sample string 3</AdvisorName> <Integrator>sample string 1</Integrator> </AuthorizationTokenViewModel>