GET api/AuthTokens

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BAuthToken
NameDescriptionTypeAdditional information
access_token

string

None.

refresh_token

string

None.

token_type

string

None.

expires_in

string

None.

issued

string

None.

expires

string

None.

TokenId

globally unique identifier

None.

AspNetUserName

string

None.

PSK

string

None.

TwoFactorEnabled

string

None.

TwoFactorProvider

string

None.

APP_WebApiUrl

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "access_token": "sample string 1",
    "refresh_token": "sample string 2",
    "token_type": "sample string 3",
    "expires_in": "sample string 4",
    "issued": "sample string 5",
    "expires": "sample string 6",
    "TokenId": "42ddb7ce-ba01-4158-8842-8e4f70897791",
    "AspNetUserName": "sample string 8",
    "PSK": "sample string 9",
    "TwoFactorEnabled": "sample string 10",
    "TwoFactorProvider": "sample string 11",
    "APP_WebApiUrl": "sample string 12"
  },
  {
    "access_token": "sample string 1",
    "refresh_token": "sample string 2",
    "token_type": "sample string 3",
    "expires_in": "sample string 4",
    "issued": "sample string 5",
    "expires": "sample string 6",
    "TokenId": "42ddb7ce-ba01-4158-8842-8e4f70897791",
    "AspNetUserName": "sample string 8",
    "PSK": "sample string 9",
    "TwoFactorEnabled": "sample string 10",
    "TwoFactorProvider": "sample string 11",
    "APP_WebApiUrl": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBAuthToken xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BenefitSoftware.Base.Common">
  <BAuthToken>
    <APP_WebApiUrl>sample string 12</APP_WebApiUrl>
    <AspNetUserName>sample string 8</AspNetUserName>
    <PSK>sample string 9</PSK>
    <TokenId>42ddb7ce-ba01-4158-8842-8e4f70897791</TokenId>
    <TwoFactorEnabled>sample string 10</TwoFactorEnabled>
    <TwoFactorProvider>sample string 11</TwoFactorProvider>
    <access_token>sample string 1</access_token>
    <expires>sample string 6</expires>
    <expires_in>sample string 4</expires_in>
    <issued>sample string 5</issued>
    <refresh_token>sample string 2</refresh_token>
    <token_type>sample string 3</token_type>
  </BAuthToken>
  <BAuthToken>
    <APP_WebApiUrl>sample string 12</APP_WebApiUrl>
    <AspNetUserName>sample string 8</AspNetUserName>
    <PSK>sample string 9</PSK>
    <TokenId>42ddb7ce-ba01-4158-8842-8e4f70897791</TokenId>
    <TwoFactorEnabled>sample string 10</TwoFactorEnabled>
    <TwoFactorProvider>sample string 11</TwoFactorProvider>
    <access_token>sample string 1</access_token>
    <expires>sample string 6</expires>
    <expires_in>sample string 4</expires_in>
    <issued>sample string 5</issued>
    <refresh_token>sample string 2</refresh_token>
    <token_type>sample string 3</token_type>
  </BAuthToken>
</ArrayOfBAuthToken>