GET CreditCheck/GetCustomerCreditCheck?CustID={CustID}
Returns the customers credit check values.
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
CustID |
Cust id to get the credit check values for |
string |
Required |
Body Parameters
Response Information
Resource Description
Returns the customers credit check values.
AgvCustomerCreditName | Description | Type | Additional Information |
---|---|---|---|
Status |
Status of the API call. |
string | |
Message |
Message of the API call. |
string | |
Count |
Count of how many CustomerCredit JSON dictionaries. |
string | |
CustomerCredit |
JSON dictionary of CustomerCredit. |
Collection of CustomerCredit |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "sample string 3", "CustomerCredit": [ { "DateOpened": "sample string 1", "CreditStatus": "sample string 2", "CreditLimit": 3.1, "AvailableCredit": 4.1, "TotalRegular": 5.1, "TotalPrepay": 6.1, "UnappliedCash": 7.1, "Budget": 8.1 }, { "DateOpened": "sample string 1", "CreditStatus": "sample string 2", "CreditLimit": 3.1, "AvailableCredit": 4.1, "TotalRegular": 5.1, "TotalPrepay": 6.1, "UnappliedCash": 7.1, "Budget": 8.1 } ] }
application/xml, text/xml
Sample:
<AgvCustomerCredit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Customer"> <Count>sample string 3</Count> <CustomerCredit> <CustomerCredit> <AvailableCredit>4.1</AvailableCredit> <Budget>8.1</Budget> <CreditLimit>3.1</CreditLimit> <CreditStatus>sample string 2</CreditStatus> <DateOpened>sample string 1</DateOpened> <TotalPrepay>6.1</TotalPrepay> <TotalRegular>5.1</TotalRegular> <UnappliedCash>7.1</UnappliedCash> </CustomerCredit> <CustomerCredit> <AvailableCredit>4.1</AvailableCredit> <Budget>8.1</Budget> <CreditLimit>3.1</CreditLimit> <CreditStatus>sample string 2</CreditStatus> <DateOpened>sample string 1</DateOpened> <TotalPrepay>6.1</TotalPrepay> <TotalRegular>5.1</TotalRegular> <UnappliedCash>7.1</UnappliedCash> </CustomerCredit> </CustomerCredit> <Message>sample string 2</Message> <Status>sample string 1</Status> </AgvCustomerCredit>