This API allows you to add a merchant, either for CLABE (Mexico) or CVU (Argentina) channels.
Copy {
"trench": "CLABE", // (string: Channel [CVU/CLABE])
"merchantName": "Rrturo Tellez", // (string: Merchant Name (Unique))
"email": "rturo@gmail.com", // (string: Email (Unique))
"merchantType": "COMPANY", // (string: Merchant Type [PERSONAL, COMPANY])
"remark": "", // (string: Remark)
"curp": "ATA891028HDFNLR06", // (string: CURP)
"rfc": "", // (string: RFC)
"cardIssueDate": "2019-06-01", // (string: Card Issue Date (yyyy-MM-dd))
"cardExpireDate": "2029-06-01", // (string: Card Expiry Date (yyyy-MM-dd))
"address": "Celle Lagu Wenner 50", // (string: Address)
"city": "Ciudad de Mexico", // (string: City)
"state": "CMX", // (string: State)
"zipCode": "09060", // (string: Zip Code)
"phone": "35580481683", // (string: Phone)
"companyName": "Rrturo Tellez", // (string: Company Name)
"aliasName": "Rrturo", // (string: Alias Name)
"companyType": "SC", // (string: Company Type)
"incorporationDate": "2019-02-01", // (string: Incorporation Date (yyyy-MM-dd))
"birthday": "1988-07-02", // (string: Birthday (yyyy-MM-dd))
"name": "Tellez", // (string: Name)
"fatherSurname": "Rrturo", // (string: Father's Surname)
"motherSurname": "" // (string: Mother's Surname)
}
Copy {
"trench": "CVU", // (string: Channel [CVU/CLABE])
"merchantName": "tom", // (string: Merchant Name (Unique))
"email": "rturo@gmail.com", // (string: Email (Unique))
"merchantType": "PERSONAL", // (string: Merchant Type [PERSONAL, COMPANY])
"remark": "", // (string: Remark)
"cuit": "20315085801", // (string: CUIT)
"name": "tom" // (string: Full Name)
}
Copy {
"code": 200,
"msg": "SUCCESS",
"data": {
"merchantId": 1, // (number: id of the merchant)
"country": "Mexico", // (string: name of the country)
"merchantName": "Rrturo Tellez", // (string: name of the merchant)
"status": 1, // (enum: status of the merchant [1: authenticating, 2: normal, 3: authentication failed])
"merchantType": 1 // (number: merchant type [1: PERSONAL, 2: COMPANY])
}
}
Copy {
"code": 200,
"msg": "SUCCESS",
"data": {
"merchantId": 1,
"country": "Mexico",
"merchantName": "Rrturo Tellez",
"status": 1,
"merchantType": 2
}
}