v1
latestOpenAPI 3.1.02026-07-2663312285.4 KBMerchants
Replace a Merchant
put/v1/merchants/{merchant-id}
Path parameters
merchant-idstring required
Unique identifier for the merchant
Example:MERCHANTID456
Request body
Example request
{
"legalEntityName": "Example LLC",
"legalEntityType": "COMPANY",
"tradeName": "Example LLC",
"incorporationDate": "2020-01-01",
"address": {
"street": "123 Main St",
"city": "Anytown",
"region": "CA",
"postalCode": "12345",
"country": "US"
},
"phoneNumber": "+1 234-567-8900",
"simpleApiWebhooksUrl": "https://www.example.com/webhook",
"url": "https://www.example.com",
"mcc": "5411",
"averageTransactionValue": 50,
"monthlyTransactionCount": 1000,
"currency": "EUR",
"paymentDescriptor": "Example LLC Store"
}Response
Merchant replaced successfully
Example response
{
"id": "MERCHANTID456",
"pspId": "psp_abcdefghijklmno123456",
"externalMerchantReference": "ENTITY1234567890",
"legalEntityName": "Example LLC",
"legalEntityType": "COMPANY",
"tradeName": "Example LLC",
"incorporationDate": "2020-01-01",
"address": {
"street": "123 Main St",
"city": "Anytown",
"region": "CA",
"postalCode": "12345",
"country": "US"
},
"phoneNumber": "+1 234-567-8900",
"email": "john.doe@example.com",
"simpleApiWebhooksUrl": "https://www.example.com/webhook",
"platformId": "PLATFORMID123456",
"url": "https://www.example.com",
"mcc": "5411",
"averageTransactionValue": 50,
"monthlyTransactionCount": 1000,
"currency": "EUR",
"paymentDescriptor": "Example LLC Store"
}