Nxsys API Documentation
  1. PaymentRate
Nxsys API Documentation
  • Introduction
    • Nxsys API Documentation
    • Base URL and Environments
    • Handling Errors
    • Pagination
    • Best Practices
  • Authentication
    • Overview
    • Step 1: Create a Client Application
    • Step 2: Obtain Authorization Code
    • Step 3: Exchange your Authorization Code for an Access Token
    • Step 4: Refresh your Access Token
  • APIs
    • Authentication
      • Construct the Authorization URL
      • Exchange your Authorization Code for an Access Token
    • Candidates
      • Create Candidate
      • Get Candidates
      • Update Candidate
    • VAT Codes
      • Get Default VAT Codes
    • PaymentRate
      • Create Payment Rate
        POST
      • Get Payment Rates
        GET
      • Get Single Payment Rate
        GET
      • Update Payment Rate
        PUT
    • Timesheet
      • Create Timesheet
      • Get Timesheets
      • Get Single Timesheet
      • Update Timesheet
    • Payslips
      • Get Payslips
  1. PaymentRate

Get Single Payment Rate

Nxsys Umbrella - Production
https://api.nxsys.tech
Nxsys Umbrella - Production
https://api.nxsys.tech
GET
https://api.nxsys.tech
/nxsys/payment-rate/{id}
Retrieve a payment rate by its unique ID. Returns the payment rate object if found.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.nxsys.tech/nxsys/payment-rate/' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "PR-1914",
        "incrementId": 1914,
        "description": "Commission",
        "displayOnPayslip": true,
        "status": "ACTIVE",
        "code": "PRCOMS",
        "type": "RATE",
        "units": "MONTHLY",
        "hoursPerUnit": "1",
        "includeInCisCalculation": false,
        "includeNICalculation": true,
        "includeTaxCalculation": true,
        "includePensionCalculation": true,
        "includeAccrueHolidayPay": false,
        "raiseInvoice": true,
        "includeInPayeUmbrellaCalculation": true,
        "isStatutory": null,
        "companyParentId": "7fb1ac20-3fed-456c-aa93-46f534b41317",
        "author": "USRP-159863",
        "createdAt": "2025-07-02T07:25:21.949Z",
        "updatedAt": "2025-07-02T07:25:21.949Z",
        "includeInPayeCalculation": true,
        "taxCanBeDeducted": true,
        "employeePRSICanBeDeducted": true,
        "employerPRSICanBeDeducted": true,
        "uscCanBeDeducted": true,
        "ascCanBeDeducted": true,
        "pensionSchemaDeductionCanBeDeducted": true,
        "lptCanBeDeducted": true,
        "repetition": null,
        "defaultVATCode": {
            "id": "VC-2",
            "incrementId": 1,
            "description": "Standard",
            "VATRate": "20%",
            "VATCode": "S",
            "author": null,
            "companyParentId": "7fb1ac20-3fed-456c-aa93-46f534b41317",
            "createdAt": "2021-05-19T04:00:21.250Z",
            "updatedAt": "2025-07-10T13:33:28.093Z",
            "deletedAt": null
        }
    },
    "success": true
}

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Path Params

Responses

🟢200OK
application/json
Request successful
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Previous
Get Payment Rates
Next
Update Payment Rate
Built with