GET api/indcert/profile/bymember?memberId={memberId}&includeAccounts={includeAccounts}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
memberId

string

Required

includeAccounts

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

IndcertProfile
NameDescriptionTypeAdditional information
ProfileImage

string

None.

FirstName

string

None.

LastName

string

None.

MemberId

string

None.

Company

IdNamePair

None.

PrimaryPhone

string

None.

EmailAddress

string

None.

MailingAddress

string

None.

IsExamAppInProcess

boolean

None.

Embargo

boolean

None.

BCCustomerId

string

None.

Accounts

Collection of Account

None.

IsAccountTypeGP

boolean

None.

IsAccountTypeSP

boolean

None.

IsProvider

boolean

None.

IsVoucherPartner

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ProfileImage": "sample string 1",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "MemberId": "sample string 4",
  "Company": {
    "Id": "0664f649-9252-4b3c-ad1e-947e5e166e7d",
    "Name": "sample string 2"
  },
  "PrimaryPhone": "sample string 5",
  "EmailAddress": "sample string 6",
  "MailingAddress": "sample string 7",
  "IsExamAppInProcess": true,
  "Embargo": true,
  "BCCustomerId": "sample string 10",
  "Accounts": [
    {
      "Id": "ca372fd4-ecf0-4ceb-9c74-76dbd86ed1b0",
      "Name": "sample string 2",
      "AccountType": {
        "Id": "0664f649-9252-4b3c-ad1e-947e5e166e7d",
        "Name": "sample string 2"
      },
      "AccountTypeCode": "",
      "BCCompanyId": "sample string 3",
      "Address": "sample string 4",
      "ProviderMemberId": "sample string 5",
      "Phone": "sample string 6"
    },
    {
      "Id": "ca372fd4-ecf0-4ceb-9c74-76dbd86ed1b0",
      "Name": "sample string 2",
      "AccountType": {
        "Id": "0664f649-9252-4b3c-ad1e-947e5e166e7d",
        "Name": "sample string 2"
      },
      "AccountTypeCode": "",
      "BCCompanyId": "sample string 3",
      "Address": "sample string 4",
      "ProviderMemberId": "sample string 5",
      "Phone": "sample string 6"
    }
  ],
  "IsAccountTypeGP": true,
  "IsAccountTypeSP": true,
  "IsProvider": true,
  "IsVoucherPartner": true
}

application/xml, text/xml

Sample:
<IndcertProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
  <Accounts>
    <Account>
      <AccountType xmlns:d4p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
        <d4p1:Id>0664f649-9252-4b3c-ad1e-947e5e166e7d</d4p1:Id>
        <d4p1:Name>sample string 2</d4p1:Name>
      </AccountType>
      <Address>sample string 4</Address>
      <BCCompanyId>sample string 3</BCCompanyId>
      <Id>ca372fd4-ecf0-4ceb-9c74-76dbd86ed1b0</Id>
      <Name>sample string 2</Name>
      <Phone>sample string 6</Phone>
      <ProviderMemberId>sample string 5</ProviderMemberId>
    </Account>
    <Account>
      <AccountType xmlns:d4p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
        <d4p1:Id>0664f649-9252-4b3c-ad1e-947e5e166e7d</d4p1:Id>
        <d4p1:Name>sample string 2</d4p1:Name>
      </AccountType>
      <Address>sample string 4</Address>
      <BCCompanyId>sample string 3</BCCompanyId>
      <Id>ca372fd4-ecf0-4ceb-9c74-76dbd86ed1b0</Id>
      <Name>sample string 2</Name>
      <Phone>sample string 6</Phone>
      <ProviderMemberId>sample string 5</ProviderMemberId>
    </Account>
  </Accounts>
  <BCCustomerId>sample string 10</BCCustomerId>
  <Company xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Id>0664f649-9252-4b3c-ad1e-947e5e166e7d</d2p1:Id>
    <d2p1:Name>sample string 2</d2p1:Name>
  </Company>
  <EmailAddress>sample string 6</EmailAddress>
  <Embargo>true</Embargo>
  <FirstName>sample string 2</FirstName>
  <IsAccountTypeGP>true</IsAccountTypeGP>
  <IsAccountTypeSP>true</IsAccountTypeSP>
  <IsExamAppInProcess>true</IsExamAppInProcess>
  <IsProvider>true</IsProvider>
  <IsVoucherPartner>true</IsVoucherPartner>
  <LastName>sample string 3</LastName>
  <MailingAddress>sample string 7</MailingAddress>
  <MemberId>sample string 4</MemberId>
  <PrimaryPhone>sample string 5</PrimaryPhone>
  <ProfileImage>sample string 1</ProfileImage>
</IndcertProfile>