GET v1/supplemental-benefits/export/companies/{companyCode}/divisions/{divisionCode}/deductions
Retrieve Supplemental Benefits Deductions by Division
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyCode |
The company code |
string |
Required |
| divisionCode |
The division code |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SupplementalBenefitsDeductionDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"code": "sample string 1",
"description": "sample string 2"
},
{
"code": "sample string 1",
"description": "sample string 2"
}
]
text/xml
Sample:
<ArrayOfSupplementalBenefitsDeductionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.ServiceContracts.Data.Models">
<SupplementalBenefitsDeductionDTO>
<Code xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Data.Models">sample string 1</Code>
<Description xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Data.Models">sample string 2</Description>
</SupplementalBenefitsDeductionDTO>
<SupplementalBenefitsDeductionDTO>
<Code xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Data.Models">sample string 1</Code>
<Description xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Data.Models">sample string 2</Description>
</SupplementalBenefitsDeductionDTO>
</ArrayOfSupplementalBenefitsDeductionDTO>