Skip to main content

Register Seller

This API is used to register a seller (sub-merchant) to use the Split Settlement Service.

Request

Request URL
POST https://{API Domain}/api/etc/registSeller
Content-type: application/json; charset=utf-8

Parameters

Field NameTypeLengthRequiredDescription
mallIdString8ByteMerchant ID assigned by KICC
mallTxtypeString2ByteRegistration Type
Register: "10", Update: "20"
statusCodeString1ByteSeller Status Code
Active: "1", Suspended: "5"
sellerIdString50ByteSeller ID
businessNoString10ByteSeller's Business Registration No. (Numbers only)
corpNameString100ByteSeller's Company Name
corpTelNoString11ByteSeller's Phone Number (Numbers only)
corpZipCodeString6ByteSeller's Zip Code (Numbers only)
corpAddressString200ByteSeller's Address
daepyoNameString100ByteSeller's Representative Name
chargeNameString100BytePerson in Charge Name
bankCodeString3ByteSeller's Bank Code
accountNoString20ByteSeller's Account Number
depositorString35ByteSeller's Account Holder Name
Request Example
{
"mallId": "{Merchant ID}",
"mallTxtype": "10",
"statusCode": "1",
"sellerId": "{Seller ID}",
"businessNo": "1234567890",
"corpName": "Test Seller Corp",
"corpTelNo": "01012345678",
"corpZipCode": "123456",
"corpAddress": "123, Teheran-ro, Gangnam-gu, Seoul",
"daepyoName": "John Doe",
"chargeName": "Manager Smith",
"bankCode": "001",
"accountNo": "1234567890",
"depositor": "John Doe"
}

Response

Parameters

Field NameTypeLengthRequiredDescription
resCdString4ByteResponse Code (Success: “0000”)
resMsgString1000ByteResponse Message
Response Example
{  
"resCd": "0000",
"resMsg": "Success"
}