Credit Card Application

You may apply credit card using this API. Before application customer confirms with Send OTP and Verify OTP API’s

API Information

URL

/creditCardApplication

Method

POST

Version

1.0

Scope

creditcard

Authorization Flow

Client Credentials


Input Information

Name Format Description Required/Optional

Name

String (15) Name Required

MiddleName

String (15) Middle name Optional

Surname

String (20) Surname Required

IdentityNumber

String (11) T.R. Identity number Required

PhoneNumber

String (11) Cell phone number Required

StatementDate

String (2) Statement Date:
25: First Week,
30: Second Week,
10: Third Week,
15: Fourth Week
Required

MonthlyNetIncome

String (10) Monthly Net Income Required

ProductCode

String Credit card product code
(Must be 10)
Required


Output Information

ApplicationResult

Name Format Description

ApplicationNumber

Integer Application number

ResultCode

Integer Result Code

ResultDescription

String Result Description


Message Codes

Message Code Description

ACBH000101

T.R. Identity Number cannot be empty.

ACBH000106

Phone number cannot be empty.

ACBH000107

Credit card product code cannot be empty.

ACBH000143

Name/Surname cannot be empty.

ACBH000144

Statement Date cannot be empty.

ACBH000145

Monthly net Income cannot be empty.

ACBH000146

T.R. Identity number format is incorrect.

ACBH000147

Phone number format is incorrect.

ACBH000148

Credit Card format is incorrect.

ACBH000149

Name/Middle Name/Surname format is incorrect.

ACBH000150

Statement date is invalid.

ACBH000151

Monthly net income format is incorrect.

Example

Request:

{
    "IdentityNumber": "00000000000",
    "PhoneNumber": "05999999999",
    "ProductCode": "10",
    "Name": "EMİR",
    "MiddleName": "",
    "Surname": "BAŞOL",
    "StatementDate": "25",
    "MonthlyNetIncome": "10000"
}

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Tamamlandı",
        "StatusDescriptionEn": "Completed",
        "ObjectID": "6f5d3ba1-7bb7-4ca5-9f75-1728175e5a7c"
    },
    "Data": {
        "ApplicationResult": {
            "ResultDescription": "Basvuru Girildi",
            "ApplicationNumber": "241684",
            "ResultCode": "00"
        }
    }
}