POST Background Screening Billing Codes

Dayforce RESTful Web Services Developer Guide

Version
R2025.2.1
POST Background Screening Billing Codes

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

ProviderReference parameter type and description
Parameters Type Description
ProviderReference* String Provider Unique Identifier.

Response Objects

Properties, type and descriptions of 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",
	}

      ]
    }
  ]
}