POST api/BackgroundCheck
Posts the specified background reports.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
backgroundReports | The background reports. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "ProviderReferenceId": { "IdValue": "sample string 1" }, "BackgroundReportPackage": { "ClientReferenceId": { "IdValue": "sample string 1" }, "SupportingDocumentation": { "Documentation": { "InternetWebAddress": "sample string 1", "Text": "sample string 2" } } } }
application/xml, text/xml
Sample:
<BackgroundReports xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.BackgroundChecks.Models"> <ProviderReferenceId> <IdValue>sample string 1</IdValue> </ProviderReferenceId> <BackgroundReportPackage> <ClientReferenceId> <IdValue>sample string 1</IdValue> </ClientReferenceId> <SupportingDocumentation> <Documentation> <InternetWebAddress>sample string 1</InternetWebAddress> <Text>sample string 2</Text> </Documentation> </SupportingDocumentation> </BackgroundReportPackage> </BackgroundReports>