DELETE api/Deductions?deductionCode={deductionCode}&employeeId={employeeId}&companyCode={companyCode}

Deletes the specified deduction code.

Request Information

Parameters

NameDescriptionAdditional information
deductionCode
The deduction code.

Define this parameter in the request URI.

employeeId
The employee identifier.

Define this parameter in the request URI.

companyCode
The company code.

Define this parameter in the request URI.

Response Information

APIResult.

Response body formats

application/json, text/json

Sample:
{
  "Success": true,
  "Messages": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ]
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.External.API.Models.Simple">
  <Messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
    <d2p1:string>sample string 3</d2p1:string>
  </Messages>
  <Success>true</Success>
</APIResult>