Card Statement List
This API returns statement list of customer authorized main card.
API Information
URL |
/creditCardStatementList |
Method |
POST |
Version |
1.0 |
Scope |
creditcard |
Authorization Flow |
Authorization Code |
Input Information
Name | Format | Description | Required/Optional |
CardID |
Integer | Unique card ID number for all cards of customer | Required |
Output Information
List< CreditCardStatements >
Name | Format | Description |
CurrencyCode |
String | Currency code |
StatementDate |
yyyy-MM-ddTHH24:mm:ss | Statement date |
LastPaymentDate |
yyyy-MM-ddTHH24:mm:ss | Last payment date |
TotalDebt |
Decimal | Total debt |
MinimumDebt |
Decimal | Minimum debt |
Message Codes
Message Code | Description |
ACBH000114 |
Card number does not belong to customer in session. |
ACBH000207 |
There is no statement for card. If card id you entered belongs to additional or vitual card API’s cannot return any statement. You can only get statement information for main cards. |
ACBH000227 |
Card id format is incorrect. |
ACBH000236 |
Additional or virtual cards can not have statements. You can view your additoinal or virtual card statement transactions in main card statement. |
Example
Request:
{ "CardID": 20090 }
Response:
{ "Header": { "StatusCode": "APIGW000000", "StatusDescription": "Completed", "ObjectID": "f689e7dc-a270-486c-bd4d-ff8ce0729ddd" }, "Data": { "CreditCardStatements": [ { "CurrencyCode": "TL", "TotalDebt": 40.95, "LastPaymentDate": "2021-02-24T00:00:00", "StatementDate": "2021-02-22T00:00:00", "MinimumDebt": 1 }, { "CurrencyCode": "TL", "TotalDebt": 40.26, "LastPaymentDate": "2021-02-05T00:00:00", "StatementDate": "2021-01-27T00:00:00", "MinimumDebt": 1 }, ... { "CurrencyCode": "TL", "TotalDebt": 10340, "LastPaymentDate": "2019-05-28T00:00:00", "StatementDate": "2019-05-26T00:00:00", "MinimumDebt": 4136 } ] } }
-
API URL : https://apigw.vakifbank.com.tr:8443
-
-
-