v1
latestOpenAPI 3.1.02026-07-2663312285.4 KBMerchants
Create a Merchant
post/v1/merchants
Request body
Example request
{
"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",
"people": [
{
"relationshipType": "ULTIMATE_BENEFICIAL_OWNER",
"person": {
"externalPersonReference": "REF123",
"firstName": "John",
"lastName": "Doe",
"middleName": "Michael",
"nativeName": "道",
"birthDate": "2000-01-01",
"address": {
"street": "123 Main St",
"city": "Anytown",
"region": "CA",
"postalCode": "12345",
"country": "US"
},
"email": "john.doe@example.com"
}
}
],
"simpleApiWebhooksUrl": "https://www.example.com/webhook",
"platformId": "PLATFORMID123456",
"pspId": "psp_abcdefghijklmno123456",
"url": "https://www.example.com",
"mcc": "5411",
"averageTransactionValue": 50,
"monthlyTransactionCount": 1000,
"currency": "EUR",
"paymentDescriptor": "Example LLC Store"
}Response
Merchant created 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",
"people": [
{
"relationshipType": "ULTIMATE_BENEFICIAL_OWNER",
"person": {
"id": "person_abcdefghijklmno123456",
"externalPersonReference": "REF123",
"firstName": "John",
"lastName": "Doe",
"address": {
"street": "123 Main St",
"city": "Anytown",
"region": "CA",
"postalCode": "12345",
"country": "US"
},
"birthDate": "2000-01-01",
"email": "john.doe@ppro.com",
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-01T00:00:00Z"
}
}
]
}