GET api/balance?uniquekey={uniquekey}&userid={userid}&password={password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uniquekey | string |
None. |
|
| userid | string |
None. |
|
| password | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of balance| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceBalance | decimal number |
None. |
|
| TotalDue | decimal number |
None. |
|
| customername | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InvoiceBalance": 1.0,
"TotalDue": 1.0,
"customername": "sample string 1"
},
{
"InvoiceBalance": 1.0,
"TotalDue": 1.0,
"customername": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfbalance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControllerLibrary">
<balance>
<InvoiceBalance>1</InvoiceBalance>
<TotalDue>1</TotalDue>
<customername>sample string 1</customername>
</balance>
<balance>
<InvoiceBalance>1</InvoiceBalance>
<TotalDue>1</TotalDue>
<customername>sample string 1</customername>
</balance>
</ArrayOfbalance>