POST api/PayrollPeriod/CreatePayrollPeriod

Request Information

URI Parameters

None.

Body Parameters

RequestPayrollPeriodCreate
NameDescriptionTypeAdditional information
PayrollMonth

string

None.

StartDate

string

None.

EndDate

string

None.

AttendanceCutOffDate

string

None.

PaymentDate

string

None.

Notes

string

None.

CreatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PayrollMonth": "sample string 1",
  "StartDate": "sample string 2",
  "EndDate": "sample string 3",
  "AttendanceCutOffDate": "sample string 4",
  "PaymentDate": "sample string 5",
  "Notes": "sample string 6",
  "CreatedBy": 7
}

application/xml, text/xml

Sample:
<RequestPayrollPeriodCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RRCDR_Attendance_API.Helpers.Custom">
  <AttendanceCutOffDate>sample string 4</AttendanceCutOffDate>
  <CreatedBy>7</CreatedBy>
  <EndDate>sample string 3</EndDate>
  <Notes>sample string 6</Notes>
  <PaymentDate>sample string 5</PaymentDate>
  <PayrollMonth>sample string 1</PayrollMonth>
  <StartDate>sample string 2</StartDate>
</RequestPayrollPeriodCreate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />