POST Background Screening Provider Statuses endpoint enables the provider to send background screening statuses to Dayforce.
Each of the statuses are optional: Order Status, Adjudication Status and Result Status. However, the provider needs to send at least one status in the request.
The URL for POST Background Screening Provider Statuses uses the following base URL:
https://www.dayforcehcm.com/api/CompanyName/V1/BackgroundScreening/
ProviderStatuses POST {Background Screening Provider Statuses}
Parameters
| Parameters | Type | Description |
|---|---|---|
| ProviderReference | String | Provider unique identifier |
| OrderStatuses | List of strings | List of strings of the screening order statuses |
| AdjudicationStatuses | List of strings | List of strings of the screening adjudication statuses |
| ResultStatuses | List of strings | List of strings of the screening result statuses |
Response Objects
Below is a sample response that Dayforce is expecting from the provider:
{
"ProviderReference": "BS_GENERIC",
"OrderStatuses": ["Order Status 1", "Order Status 2"],
"ResultStatuses": ["Result Status 1", "Result Status 2"],
"AdjudicationStatuses": ["Adjudication Status 1", "Adjudication Status 2"]
}