GET api/Job/{employeeNo}/{startDate}

Get specific job details for an employee. The key is the StartDate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeNo

Employee Number

string

Required

startDate

Start Date

date

Required

Body Parameters

None.

Response Information

Resource Description

Job

JobDetail
NameDescriptionTypeAdditional information
StartDate

date

Required

JobTitle

string

None.

WeeklyHoursWorked

decimal number

None.

DailyRate

Only stored for WorkerPayType Hourly

decimal number

None.

HourlyRate

Only stored for WorkerPayType Hourly

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "StartDate": "2025-01-13T03:47:57.5680998+00:00",
  "JobTitle": "sample string 2",
  "WeeklyHoursWorked": 1.0,
  "DailyRate": 1.0,
  "HourlyRate": 1.0
}

application/xml, text/xml

Sample:
<JobDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServicesRESTful.Models">
  <DailyRate>1</DailyRate>
  <HourlyRate>1</HourlyRate>
  <JobTitle>sample string 2</JobTitle>
  <StartDate>2025-01-13T03:47:57.5680998+00:00</StartDate>
  <WeeklyHoursWorked>1</WeeklyHoursWorked>
</JobDetail>