GET api/CompanyDeductions?companyCode={companyCode}
Gets the specified companycode.
Request Information
Parameters
Name | Description |
---|---|
companyCode
(param in the URI) |
No documentation available. |
Response Information
IEnumerable{Models.CompanyDeduction}.
Response body formats
application/json, text/json
Sample:
[ { "Company_Cd": "", "Deduction_Cd": "", "Stub_Description": "" }, { "Company_Cd": "", "Deduction_Cd": "", "Stub_Description": "" }, { "Company_Cd": "", "Deduction_Cd": "", "Stub_Description": "" } ]
application/xml, text/xml
Sample:
<ArrayOfCompanyDeduction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.CompanyDeductions.Models"> <CompanyDeduction> <Company_Cd></Company_Cd> <Deduction_Cd></Deduction_Cd> <Stub_Description></Stub_Description> </CompanyDeduction> <CompanyDeduction> <Company_Cd></Company_Cd> <Deduction_Cd></Deduction_Cd> <Stub_Description></Stub_Description> </CompanyDeduction> <CompanyDeduction> <Company_Cd></Company_Cd> <Deduction_Cd></Deduction_Cd> <Stub_Description></Stub_Description> </CompanyDeduction> </ArrayOfCompanyDeduction>