GET api/PaymentSummaryPDF
Get single payment summaries pdf
Request Information
URI Parameters
(i.e.queryString parameters in the form ?param1={param1}¶m2={param2})
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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": "2025-11-01T04:03:24.6236084+11:00",
  "dateCreated": "2025-11-01T04:03:24.6236084+11:00",
  "pdfType": "sample string 5",
  "pdfName": "sample string 6",
  "pdfContents": "QEA="
}
        application/xml, text/xml
            Sample:
<PaymentSummaryPDFView xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <idPaymentSummaryPDF>1</idPaymentSummaryPDF> <EmpCode>sample string 2</EmpCode> <PeriodEnd>2025-11-01T04:03:24.6236084+11:00</PeriodEnd> <DateCreated>2025-11-01T04:03:24.6236084+11:00</DateCreated> <PDFType>sample string 5</PDFType> <PDFName>sample string 6</PDFName> <PDFContents>QEA=</PDFContents> </PaymentSummaryPDFView>
