POST Background Screening Billing Codes endpoint enables the provider to send a list of Billing Codes to Dayforce. The provider can also send the list of associated packages (if any) together.
Note: Billing Codes that aren't part of the request are considered deleted or inactive.
The URL for POST Background Screening Billing Codes uses the following base URL:
https://www.dayforcehcm.com/api/CompanyName/V1/BackgroundScreening/BillingCode
Parameters
| Parameters | Type | Description |
|---|---|---|
| ProviderReference* | String | Provider Unique Identifier. |
Response Objects
| Object Name | Object Properties | Type | Description |
|---|---|---|---|
| BillingCodes | BillingCodeId* | String | Provider billing code id |
| Name | String | Billing code name | |
| Description | String | Billing code description | |
| AssociatedPackages | N/A | List of associated packages to a billing code | |
| AssociatedPackages | PackageId* | String | Provider package id |
| Name* | String | Package name | |
| Description | String | Package description | |
| IncludeRTW | Boolean | Defines whether the package supports Right to Work |
Below is a sample response that Dayforce is expecting from the provider:
{
"ProviderReference": "BS_GENERIC",
"BillingCodes": [
{
"BillingCodeId": "3",
"Name": "Billing Code 3",
"Description": "Billing Code 3 Description"
"AssociatedPackages": [
{
"PackageId": "4",
"Name": "Package 4",
"Description": "Package 4 Description",
"IncludeRTW": true
},
{
"PackageId": "5",
"Name": "Package 5",
"Description": "Package 5 Description",
}
]
}
]
}