GET api/indcert/profile?contactId={contactId}&includeAccounts={includeAccounts}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contactId | globally unique identifier |
Required |
|
| includeAccounts | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
IndcertProfile| Name | Description | Type | Additional 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": "67355081-7917-42b8-b6f7-40bd5b5ea1ad",
"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": "5e680a43-fe2d-4dcf-b507-56ce39cd66db",
"Name": "sample string 2",
"AccountType": {
"Id": "67355081-7917-42b8-b6f7-40bd5b5ea1ad",
"Name": "sample string 2"
},
"AccountTypeCode": "",
"BCCompanyId": "sample string 3",
"Address": "sample string 4",
"ProviderMemberId": "sample string 5",
"Phone": "sample string 6"
},
{
"Id": "5e680a43-fe2d-4dcf-b507-56ce39cd66db",
"Name": "sample string 2",
"AccountType": {
"Id": "67355081-7917-42b8-b6f7-40bd5b5ea1ad",
"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>67355081-7917-42b8-b6f7-40bd5b5ea1ad</d4p1:Id>
<d4p1:Name>sample string 2</d4p1:Name>
</AccountType>
<Address>sample string 4</Address>
<BCCompanyId>sample string 3</BCCompanyId>
<Id>5e680a43-fe2d-4dcf-b507-56ce39cd66db</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>67355081-7917-42b8-b6f7-40bd5b5ea1ad</d4p1:Id>
<d4p1:Name>sample string 2</d4p1:Name>
</AccountType>
<Address>sample string 4</Address>
<BCCompanyId>sample string 3</BCCompanyId>
<Id>5e680a43-fe2d-4dcf-b507-56ce39cd66db</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>67355081-7917-42b8-b6f7-40bd5b5ea1ad</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>