GET api/v1/billing/supportingproviders/{practiceid}

Get supporting providers by practice number

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceid

Unique identifier of practice

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Com.Healthbridge.Hhas.Billing.Interface.ValueObjects.SupportingProviderVo
NameDescriptionTypeAdditional information
SupportingProviderXRef

string

None.

Type

string

None.

TreatingPracticeNumber

string

None.

Name

string

None.

Surname

string

None.

HpcsaNumber

string

None.

Title

string

None.

FriendlyName

Title + Name + Surname

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SupportingProviderXRef": "sample string 1",
    "Type": "sample string 2",
    "TreatingPracticeNumber": "sample string 3",
    "Name": "sample string 4",
    "Surname": "sample string 5",
    "HpcsaNumber": "sample string 6",
    "Title": "sample string 7",
    "FriendlyName": "sample string 8"
  },
  {
    "SupportingProviderXRef": "sample string 1",
    "Type": "sample string 2",
    "TreatingPracticeNumber": "sample string 3",
    "Name": "sample string 4",
    "Surname": "sample string 5",
    "HpcsaNumber": "sample string 6",
    "Title": "sample string 7",
    "FriendlyName": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSupportingProviderVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Billing.Interface.ValueObjects">
  <SupportingProviderVo>
    <FriendlyName>sample string 8</FriendlyName>
    <HpcsaNumber>sample string 6</HpcsaNumber>
    <Name>sample string 4</Name>
    <SupportingProviderXRef>sample string 1</SupportingProviderXRef>
    <Surname>sample string 5</Surname>
    <Title>sample string 7</Title>
    <TreatingPracticeNumber>sample string 3</TreatingPracticeNumber>
    <Type>sample string 2</Type>
  </SupportingProviderVo>
  <SupportingProviderVo>
    <FriendlyName>sample string 8</FriendlyName>
    <HpcsaNumber>sample string 6</HpcsaNumber>
    <Name>sample string 4</Name>
    <SupportingProviderXRef>sample string 1</SupportingProviderXRef>
    <Surname>sample string 5</Surname>
    <Title>sample string 7</Title>
    <TreatingPracticeNumber>sample string 3</TreatingPracticeNumber>
    <Type>sample string 2</Type>
  </SupportingProviderVo>
</ArrayOfSupportingProviderVo>