Add an employee's unpaid paystubs

Add an employee's unpaid paystubs

Sample Request

{
    "employeeId": 1234,
    "unpaidPeriods": [
        {
            "payDate": "2015-11-20"
        },
        {
            "payDate": "2015-12-05"
        },
        {
            "payDate": "2015-12-20"
        }
    ]
}

Sample Response

{
    "employeeId": 1234,
    "unpaidPeriods": [
        {
            "payDate": "2015-11-20"
        },
        {
            "payDate": "2015-12-05"
        },
        {
            "payDate": "2015-12-20"
        }
    ]
}

Notes

All properties are required.

unpaidPeriods is an Array of unpaidPeriod JSON Objects

payDate: ISO Date Format (YYYY-MM-DD format)

Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!