GET api/PaymentSummaryPDF

Get single payment summaries pdf

Request Information

URI Parameters

(i.e.queryString parameters in the form ?param1={param1}&param2={param2})

NameDescriptionTypeAdditional information
empCode

Employee's code.

string

Required

financialYear

Year of payment summaries.

integer

Required

type

The payment summary type, in case multiple types are present for the same year. Optional.

string

None.

Body Parameters

None.

Response Information

Resource Description

A single payment summaries

PaymentSummaryPDFView
NameDescriptionTypeAdditional information
idPayment
 SummaryPDF

integer

None.

EmpCode

string

None.

PeriodEnd

date

None.

DateCreated

date

None.

PDFType

string

None.

PDFName

string

None.

PDFContents

Collection of Byte[]

None.

Response Formats

application/json, text/json

Sample:
{
  "idPaymentSummaryPDF": 1,
  "empCode": "sample string 2",
  "periodEnd": "2024-05-19T09:56:36.3390808+10:00",
  "dateCreated": "2024-05-19T09:56:36.3390808+10:00",
  "pdfType": "sample string 5",
  "pdfName": "sample string 6",
  "pdfContents": "QEA="
}

application/xml, text/xml

Sample:
<PaymentSummaryPDFView xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <idPaymentSummaryPDF>1</idPaymentSummaryPDF>
  <EmpCode>sample string 2</EmpCode>
  <PeriodEnd>2024-05-19T09:56:36.3390808+10:00</PeriodEnd>
  <DateCreated>2024-05-19T09:56:36.3390808+10:00</DateCreated>
  <PDFType>sample string 5</PDFType>
  <PDFName>sample string 6</PDFName>
  <PDFContents>QEA=</PDFContents>
</PaymentSummaryPDFView>