GET company/get?accountnumber={accountnumber}
Gets the specified company based on accountnumber.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
accountNumber | The accountnumber. (MAX 10 CHARS) |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "Name": "sample string 1", "AccountNumber": "sample string 2", "Email": "sample string 3", "PaymentMethod": "sample string 4", "CreditLimitValue": 5.1, "CreditLimitDays": 1, "DateAdded": "2024-12-11T11:56:48.7126923+00:00", "ProductPricingModelCode": "sample string 7" }
application/xml, text/xml
Sample:
<CompanyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models"> <AccountNumber>sample string 2</AccountNumber> <CreditLimitDays>1</CreditLimitDays> <CreditLimitValue>5.1</CreditLimitValue> <DateAdded>2024-12-11T11:56:48.7126923+00:00</DateAdded> <Email>sample string 3</Email> <Name>sample string 1</Name> <PaymentMethod>sample string 4</PaymentMethod> <ProductPricingModelCode>sample string 7</ProductPricingModelCode> </CompanyModel>