POST api/FrontierWeb/Payroll/ImportTbxDeductions
Request Information
URI Parameters
None.
Body Parameters
Collection of TbxDeduction| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeIdNo | integer |
None. |
|
| DeductionCode | string |
None. |
|
| PreTax | string |
None. |
|
| DeductionRate | decimal number |
None. |
|
| EffectiveDate | date |
None. |
|
| ExpirationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"EmployeeIdNo": 1,
"DeductionCode": "sample string 2",
"PreTax": "sample string 3",
"DeductionRate": 4.0,
"EffectiveDate": "2025-11-05T15:00:49.9589978-06:00",
"ExpirationDate": "2025-11-05T15:00:49.9589978-06:00"
},
{
"EmployeeIdNo": 1,
"DeductionCode": "sample string 2",
"PreTax": "sample string 3",
"DeductionRate": 4.0,
"EffectiveDate": "2025-11-05T15:00:49.9589978-06:00",
"ExpirationDate": "2025-11-05T15:00:49.9589978-06:00"
}
]
text/html
Sample:
[{"EmployeeIdNo":1,"DeductionCode":"sample string 2","PreTax":"sample string 3","DeductionRate":4.0,"EffectiveDate":"2025-11-05T15:00:49.9589978-06:00","ExpirationDate":"2025-11-05T15:00:49.9589978-06:00"},{"EmployeeIdNo":1,"DeductionCode":"sample string 2","PreTax":"sample string 3","DeductionRate":4.0,"EffectiveDate":"2025-11-05T15:00:49.9589978-06:00","ExpirationDate":"2025-11-05T15:00:49.9589978-06:00"}]
Response Information
Resource Description
GenericTransactionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnedObject | Object |
None. |
|
| IsSuccessful |
Indicates if the transaction was successful or not. |
boolean |
None. |
| ReturnedMessages |
Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction. |
Collection of ReturnedMessage |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnedObject": {},
"IsSuccessful": true,
"ReturnedMessages": null
}
text/html
Sample:
{"ReturnedObject":{},"IsSuccessful":true,"ReturnedMessages":null}