POST v1/PayOnDemand/UpdateEmployeePayOnDemandApplicationByEmployeeNumber/{employeeNumber}
Update an Employee Pay On-Demand Application's EmployeePercentWageLimit by Employee Number
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeNumber | string |
Required |
Body Parameters
EmployeePayOnDemandApplication| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeNumber | string |
Required |
|
| AgreedToTerms | boolean |
Required |
|
| Status | integer |
Required |
|
| DateApplied | date |
Required |
|
| DateAgreedToTerms | date |
Required |
|
| EmployeePercentWageLimit | decimal number |
Required |
|
| OverrideFeePaidBy |
Exclude or leave as null to use division fee paid by. Set 0 for Employee, 1 for Employer |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeNumber": "sample string 1",
"AgreedToTerms": true,
"Status": 3,
"DateApplied": "2026-05-14T00:19:39.5946428-04:00",
"DateAgreedToTerms": "2026-05-14T00:19:39.5946428-04:00",
"EmployeePercentWageLimit": 1.0,
"OverrideFeePaidBy": 1
}
application/xml, text/xml
Sample:
<EmployeePayOnDemandApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.TimeAttendance.WebAPI.Models"> <AgreedToTerms>true</AgreedToTerms> <DateAgreedToTerms>2026-05-14T00:19:39.5946428-04:00</DateAgreedToTerms> <DateApplied>2026-05-14T00:19:39.5946428-04:00</DateApplied> <EmployeeNumber>sample string 1</EmployeeNumber> <EmployeePercentWageLimit>1</EmployeePercentWageLimit> <OverrideFeePaidBy>1</OverrideFeePaidBy> <Status>3</Status> </EmployeePayOnDemandApplication>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |