GET api/Products/Deposits/{sessionId}
Returns information about user deposits
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
sessionId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of user deposits
Collection of DepositName | Description | Type | Additional information |
---|---|---|---|
AgreeKey |
ხელშეკრულების ნომერი |
integer |
None. |
ProdType |
პროდუქტის ტიპი |
string |
None. |
Name |
სახელი |
string |
None. |
Ccy |
ვალუტა |
string |
None. |
DepositType |
ანაბრის ტიპი |
string |
None. |
NextWithdrawalDate |
შემდეგი გატანის თარიღი |
integer |
None. |
AccountKey |
ანგარიშის უნიკალური იდენტიფიკატორი |
integer |
None. |
AcctNo |
ანგარიშის ნომერი |
string |
None. |
CurrentBalance |
მიმდინარე ბალანსი |
decimal number |
None. |
AvailableAmount |
ხელმისაწვდომი თანხა |
decimal number |
None. |
ProductId |
პროდუქტის Id |
integer |
None. |
ProductGroup |
პროდუქტის ჯგუფი |
string |
None. |
DepositTypeName |
ანაბრის ტიპის დასახელება |
string |
None. |
MaturityDate |
ვადის გასვლის თარიღი |
integer |
None. |
StartDate |
გახსნის თარიღი |
integer |
None. |
IntAccrued |
დარიცხული სარგებელი |
decimal number |
None. |
Status |
სტატუსი |
string |
None. |
CloseDate |
დახურვის თარიღი |
date |
None. |
InterestRate |
წლირუ საპროცენტო განაკვეთი |
decimal number |
None. |
TotalBalance |
სულ ანაბრის თანხა |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AgreeKey": 1, "ProdType": "sample string 2", "Name": "sample string 3", "Ccy": "sample string 4", "DepositType": "sample string 5", "NextWithdrawalDate": 6, "AccountKey": 7, "AcctNo": "sample string 8", "CurrentBalance": 9.1, "AvailableAmount": 10.1, "ProductId": 11, "ProductGroup": "sample string 12", "DepositTypeName": "sample string 13", "MaturityDate": 1, "StartDate": 14, "IntAccrued": 15.1, "Status": "sample string 16", "CloseDate": "2021-04-18T15:27:31.3911255+04:00", "InterestRate": 17.1, "TotalBalance": 18.1 }, { "AgreeKey": 1, "ProdType": "sample string 2", "Name": "sample string 3", "Ccy": "sample string 4", "DepositType": "sample string 5", "NextWithdrawalDate": 6, "AccountKey": 7, "AcctNo": "sample string 8", "CurrentBalance": 9.1, "AvailableAmount": 10.1, "ProductId": 11, "ProductGroup": "sample string 12", "DepositTypeName": "sample string 13", "MaturityDate": 1, "StartDate": 14, "IntAccrued": 15.1, "Status": "sample string 16", "CloseDate": "2021-04-18T15:27:31.3911255+04:00", "InterestRate": 17.1, "TotalBalance": 18.1 } ]
application/xml, text/xml
Sample:
<ArrayOfDeposit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hackathon.Models"> <Deposit> <AccountKey>7</AccountKey> <AcctNo>sample string 8</AcctNo> <AgreeKey>1</AgreeKey> <AvailableAmount>10.1</AvailableAmount> <Ccy>sample string 4</Ccy> <CloseDate>2021-04-18T15:27:31.3911255+04:00</CloseDate> <CurrentBalance>9.1</CurrentBalance> <DepositType>sample string 5</DepositType> <DepositTypeName>sample string 13</DepositTypeName> <IntAccrued>15.1</IntAccrued> <InterestRate>17.1</InterestRate> <MaturityDate>1</MaturityDate> <Name>sample string 3</Name> <NextWithdrawalDate>6</NextWithdrawalDate> <ProdType>sample string 2</ProdType> <ProductGroup>sample string 12</ProductGroup> <ProductId>11</ProductId> <StartDate>14</StartDate> <Status>sample string 16</Status> <TotalBalance>18.1</TotalBalance> </Deposit> <Deposit> <AccountKey>7</AccountKey> <AcctNo>sample string 8</AcctNo> <AgreeKey>1</AgreeKey> <AvailableAmount>10.1</AvailableAmount> <Ccy>sample string 4</Ccy> <CloseDate>2021-04-18T15:27:31.3911255+04:00</CloseDate> <CurrentBalance>9.1</CurrentBalance> <DepositType>sample string 5</DepositType> <DepositTypeName>sample string 13</DepositTypeName> <IntAccrued>15.1</IntAccrued> <InterestRate>17.1</InterestRate> <MaturityDate>1</MaturityDate> <Name>sample string 3</Name> <NextWithdrawalDate>6</NextWithdrawalDate> <ProdType>sample string 2</ProdType> <ProductGroup>sample string 12</ProductGroup> <ProductId>11</ProductId> <StartDate>14</StartDate> <Status>sample string 16</Status> <TotalBalance>18.1</TotalBalance> </Deposit> </ArrayOfDeposit>