POST v1/Reports/PostDownloadGeneralLedgerByCode

Downloads a General Ledger Report passing in the General Ledger Code, along with the CheckDate plus Run Number of the requested payroll

Request Information

URI Parameters

None.

Body Parameters

The GeneralLedgerRequestData Object.

GeneralLedgerRequestData
NameDescriptionTypeAdditional information
GeneralLedgerCode

Gets or sets the GeneralLedger Code.

string

None.

CheckDate

Gets or sets Payroll Check Date for the General Ledger Request in MM/dd/yyyy format e.g 01/01/2022.

string

None.

RunNumber

Gets or sets Payroll Run Number for the General Ledger Request.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "GeneralLedgerCode": "sample string 1",
  "CheckDate": "sample string 2",
  "RunNumber": 3
}

application/xml, text/xml

Sample:
<GeneralLedgerRequestData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.TimeAttendance.WebAPI.Models">
  <CheckDate>sample string 2</CheckDate>
  <GeneralLedgerCode>sample string 1</GeneralLedgerCode>
  <RunNumber>3</RunNumber>
</GeneralLedgerRequestData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.