GET api/checkingaccounts/byClient?clientID={clientID}¤cyCode={currencyCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID | integer |
Required |
|
| currencyCode | CurrencyCodeEnum |
Required |
Body Parameters
None.
Response Information
Resource Description
CheckingAccountData| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer |
None. |
|
| CurrencyCode | CurrencyCodeEnum |
None. |
|
| Ammount | decimal number |
None. |
|
| ClientCode | string |
None. |
|
| ClientName | string |
None. |
|
| AmmountToDecimal | decimal number |
None. |
|
| AmmountToStr | string |
None. |
|
| SearchDisplayCompleteName | string |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ClientID": 1,
"CurrencyCode": 0,
"Ammount": 1.0,
"ClientCode": "sample string 1",
"ClientName": "sample string 2",
"AmmountToDecimal": 1.0,
"AmmountToStr": "1,00",
"SearchDisplayCompleteName": "sample string 1 - sample string 2 - Cta. Cte. en Pesos",
"ID": 1
}
text/xml
Sample:
<CheckingAccountData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data"> <ID>1</ID> <Ammount>1</Ammount> <ClientCode>sample string 1</ClientCode> <ClientID>1</ClientID> <ClientName>sample string 2</ClientName> <CurrencyCode>ARS</CurrencyCode> </CheckingAccountData>