This GET operation returns the details of job step rates for an effective date range. The operation uses the following URL:
https://www.dayforcehcm.com/api/CompanyName/V1/JobStepRate
Parameters
| Parameter | Description |
|---|---|
| effectiveStartDate | The job step rate’s effective start date. |
| effectiveEndDate | The job step rate’s effective end date. |
| employeeXRefCode | The reference code of the employee whose job step rate data is retrieved. |
| showSystemTransactions | Include system transactions in the operation. |
Response
The response is in JSON format as illustrated in the example below:
Copy
{
"Data": [
{
"EmployeeXRefCode": "string",
"JobStepRates": [
{
"WorkAssignment": {
"PositionXRefCode": "string",
"PositionName": "string",
"JobXRefCode": "string",
"JobName": "string",
"DeptXRefCode": "string",
"DeptName": "string",
"OrgUnitXRefCode": "string",
"OrgUnitName": "string",
"IsPrimary": true,
"EffectiveStart": "2024-07-31T20:16:41.054Z",
"EffectiveEnd": "2024-07-31T20:16:41.054Z"
},
"EffectiveFrom": "2024-07-31T20:16:41.054Z",
"EffectiveTo": "2024-07-31T20:16:41.054Z",
"JobSetXRef": "string",
"JobSetLevelXRef": "string",
"JobSetLevelRate": 0,
"Transactions": [
{
"BusinessDate": "2024-07-31T20:16:41.054Z",
"Value": 0
}
]
}
]
}
],
"ProcessResults": [
{
"Code": "string",
"Context": "string",
"Level": "string",
"Message": "string"
}
],
"Paging": {
"Next": "string"
}
}