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
PaymentSummaryPDFViewName | 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": "2024-11-21T19:49:11.0283492+11:00", "dateCreated": "2024-11-21T19:49:11.0283492+11: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-11-21T19:49:11.0283492+11:00</PeriodEnd> <DateCreated>2024-11-21T19:49:11.0283492+11:00</DateCreated> <PDFType>sample string 5</PDFType> <PDFName>sample string 6</PDFName> <PDFContents>QEA=</PDFContents> </PaymentSummaryPDFView>