POST Plan Targets

Dayforce RESTful Web Services Developer Guide

Version
R2025.2.1
POST Plan Targets

You can use the POST verb to create new plan targets.

Parameters

isValidateOnly (boolean)

  • Used to specify that all of the validations need to be performed without committing any changes.
  • Use this parameter to control whether committing information to your instance of Dayforce is your responsibility.
  • The URL syntax is:
    https://www.dayforcehcm.com/api/CompanyName/V1/PlanTargets?isValidateOnly=true

Request Body

The request body contains the values that need to be inserted into the available data entities. The example below shows all of the possible fields in the correct JSON format.

{
  "PlanTargetXRefCode": "string",
  "Name": "string",
  "Description": "string",
  "EffectiveStart": "2023-01-31T17:30:46.297Z",
  "EffectiveEnd": "2023-01-31T17:30:46.297Z",
  "TargetValue": 0,
  "KpiXRefCode": "string",
  "ZoneXRefCode": "string",
  "DaysOfWeek": [
    "string"
  ],
  "OrgUnitXRefCodes": [
    "string"
  ],
  "CreationOrgUnitXRefCode": "string"
}