GET api/v1/infrastructure/{practiceId}/tokenproviders

Get all access tokens for different providers

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Infrastructure.RestControllers.TokenProviderVo
NameDescriptionTypeAdditional information
Token

string

None.

Scope

string

None.

ServiceUrl

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Token": "sample string 1",
    "Scope": "sample string 2",
    "ServiceUrl": "sample string 3"
  },
  {
    "Token": "sample string 1",
    "Scope": "sample string 2",
    "ServiceUrl": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTokenProviderVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Infrastructure.RestControllers">
  <TokenProviderVo>
    <Scope>sample string 2</Scope>
    <ServiceUrl>sample string 3</ServiceUrl>
    <Token>sample string 1</Token>
  </TokenProviderVo>
  <TokenProviderVo>
    <Scope>sample string 2</Scope>
    <ServiceUrl>sample string 3</ServiceUrl>
    <Token>sample string 1</Token>
  </TokenProviderVo>
</ArrayOfTokenProviderVo>