POST api/FrontierWeb/Payroll/ImportTbxDeductions

Request Information

URI Parameters

None.

Body Parameters

Collection of TbxDeduction
NameDescriptionTypeAdditional 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-06-18T09:07:32.072687-05:00",
    "ExpirationDate": "2025-06-18T09:07:32.072687-05:00"
  },
  {
    "EmployeeIdNo": 1,
    "DeductionCode": "sample string 2",
    "PreTax": "sample string 3",
    "DeductionRate": 4.0,
    "EffectiveDate": "2025-06-18T09:07:32.072687-05:00",
    "ExpirationDate": "2025-06-18T09:07:32.072687-05:00"
  }
]

text/html

Sample:
[{"EmployeeIdNo":1,"DeductionCode":"sample string 2","PreTax":"sample string 3","DeductionRate":4.0,"EffectiveDate":"2025-06-18T09:07:32.072687-05:00","ExpirationDate":"2025-06-18T09:07:32.072687-05:00"},{"EmployeeIdNo":1,"DeductionCode":"sample string 2","PreTax":"sample string 3","DeductionRate":4.0,"EffectiveDate":"2025-06-18T09:07:32.072687-05:00","ExpirationDate":"2025-06-18T09:07:32.072687-05:00"}]

Response Information

Resource Description

GenericTransactionResponse
NameDescriptionTypeAdditional 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}