Creation of a merchant / TT

Request:

POST http: // [IP]: [PORT] / api / merchant / insert

Body:
{
	"externalId": "[Merchant ID in the bank information system, string, no more than 16 characters]",
	"name": "[Merchant name, string, no more than 250 characters]",
	"companyId": "[ID of the company that owns the merchant, number. Contained in the response to the company creation request]",
	"status": "[Merchant status, string, 1 character, allowed values: '0' - active, '1' - blocked]",
	"phone": "[Merchant phone, string, no more than 12 digits]",
	"email": "[Merchant email, string, no more than 100 characters]", 
	"merchantCategoryCode": "[Merchant category code, number, 4 digits]", 
	"city": "[Merchant city, string, no more than 50 characters]",  
	"address": "[Merchant address, string, no more than 500 characters]", 
 	"financialInstituteId": "[Identifier of financial institute, number. Optional]",
	"operationLimit": "[Operation limit amount, integer, in minimum currency units. Optional]"
}
Answer:
{
    "id": "[Unique merchant identifier]"
}

Last updated