Credit Card Application
This API allows you to apply for Akbank credit card.
Parameters
Name | Type | Description |
name |
string | Credit Card applicant name (Required) |
secondName |
string | Credit Card applicant second name (Optional) |
surname |
string | Credit Card applicant surname (Required) |
|
string | Credit Card applicant email address. (Required) |
phoneNumber |
string | Credit Card applicant phone number. In the format of 5XX1234567. (Required) |
identityNumber |
string | Turkish identity number of the credit card applicant. (Required) |
application |
string | Application name of the API consumer application (Required) |
Data Returned
Data is returned as JSON as specified by the dataFormat parameter.
Regardless of format, the data contains the following fields:
Name | Type | Description |
returnCode |
string | Return code of API call . |
returnMessage |
string | Return message of credit card application. |
Examples
Request:
{
"name": "Ali",
"secondName": "Veli",
"surname": "Doğru",
"email": "ali.dogru@akbank.com",
"phoneNumber": "05359112233",
"identityNumber": "127762123454",
"application": "ApplicationX"
}
Response:
{
"returnCode": "API-00000",
"returnMessage": "Credit Card Application has been successfully completed.",
"data": null
}
-
API URL : https://apigate.akbank.com/api/mock
-
-
-