POST api/provider/account/attest?accountId={accountId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | globally unique identifier |
Required |
Body Parameters
UpdateProviderAttestation| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactId | globally unique identifier |
None. |
|
| IsAttested | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ContactId": "ffc4866e-f637-4a03-9982-ef90a2e51c2c",
"IsAttested": true
}
application/xml, text/xml
Sample:
<UpdateProviderAttestation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models"> <ContactId>ffc4866e-f637-4a03-9982-ef90a2e51c2c</ContactId> <IsAttested>true</IsAttested> </UpdateProviderAttestation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CreateProviderAccountResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactId | globally unique identifier |
None. |
|
| PortalId | string |
None. |
|
| AccountId | globally unique identifier |
None. |
|
| ProviderStatus | OptionSetValueModel |
None. |
|
| ProviderPreScreen | boolean |
None. |
|
| ProviderPreScreenOverride | boolean |
None. |
|
| IsDuplicate | boolean |
None. |
|
| IsEmbargo | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ContactId": "4d19be8e-5d6e-4b05-9a9a-26cbc1edb70a",
"PortalId": "sample string 2",
"AccountId": "747c7ebb-2fe5-4622-bd6e-9029306d3e09",
"ProviderStatus": {
"Label": "sample string 1",
"Value": 2
},
"ProviderPreScreen": true,
"ProviderPreScreenOverride": true,
"IsDuplicate": true,
"IsEmbargo": true
}
application/xml, text/xml
Sample:
<CreateProviderAccountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
<AccountId>747c7ebb-2fe5-4622-bd6e-9029306d3e09</AccountId>
<ContactId>4d19be8e-5d6e-4b05-9a9a-26cbc1edb70a</ContactId>
<IsDuplicate>true</IsDuplicate>
<IsEmbargo>true</IsEmbargo>
<PortalId>sample string 2</PortalId>
<ProviderPreScreen>true</ProviderPreScreen>
<ProviderPreScreenOverride>true</ProviderPreScreenOverride>
<ProviderStatus xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
<d2p1:Label>sample string 1</d2p1:Label>
<d2p1:Value>2</d2p1:Value>
</ProviderStatus>
</CreateProviderAccountResponse>