Update Easy Address

This API updates easy address information.

API Information

URL

/updateKOLAS

Method

POST

Version

1.0

Scope

transfer

Authorization Flow

Authorization Code


Input Information

Name Format Description Required/Optional

SystemRefNo

Integer (30) System Referance Number Required

AddressType

String (1) Easy Address Types
K: T.R. Identity Number
T: Phone Number
E: E-Mail
V: Tax Identity Number
Y: Foreign Identity Number
P:Passport Number
 
Required

AddressValue

String (30) Address value that added by customer and cofirmed by participant. Must be compatible with “Easy Address Type”. Required

AccountOwner

String (30) Name Surname/Title Required

IBAN

String (30) IBAN . Required

Description

String (30) Description Optional


Output Information

Name Format Description

SystemRefNo

Integer System Referance Number

AddressType

String(1) Easy Address Types
K: T.R. Identity Number
T: Phone Number
E: E-Mail
V: Tax Identity Number
Y: Foreign Identity Number
P:Passport Number
 

AddressValue

String Address value that added by customer and cofirmed by participant. Must be compatible with “Easy Address Type”.

TradeName

String Trade Name which is only shown by commercial customer.

List< KOLASError >

Name Format Description

ErrorCode

Integer Error Code

Information

String Error Description

 

Message Codes

Message Code Description

ACBH000022

IBAN format is incorrect.

ACBH000055

IBAN cannot be empty.

ACBH000143

Name Surname cannot be empty.

ACBH000146

T.R.Identiy Number format is incorrect.

ACBH000364

T.R. Identity Number cannot be empty.

ACBH000267

Tax Identity Number is incorrect.

ACBH000365

Tax Identity Number cannot be empty.

ACBH000212

Cell Phone number must be 10 digits and start with 5.

ACBH000366

Cell Phone cannot be empty.

ACBH000367

Passport number format is incorrect.

ACBH000368

Passport number cannot be empty.

ACBH000369

Foreign Identity Number format is incorrect.

ACBH000370

Foreign Identity Number cannot be empty.

ACBH000197

E-Mail format is incorrect

ACBH000199

E-Mail cannot be empty.

ACBH000376

Addres Type cannot be empty.

Example

Request


		
{
    "SystemRefNo": 527826687958712322,
    "AddressType":"K",
    "AddressValue":"12345678912",
    "AccountOwner":"KIZILCIM ŞERBET",
    "IBAN":"TR000000000000000000000000",
    "Description": "test"
} 

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Tamamlandı",
        "StatusDescriptionEn": "Completed",
        "ObjectID": "9122f963-993a-4489-bf3c-97ef11ac63ba"
    },
    "Data": {
        "systemRefNo": 527826687958712322,
        "AddressValue": 12345678912,
        "KOLASError": "",
        "AddressType": "K"
    }
}