Merchant
Get merchant identity for the authenticated provider
Returns the subset of provider data safe to render in a customer-facing checkout: display name, legal name, support contact, terms and privacy URLs, and logo. Used by SDK components like MandateText and CheckoutSummary.
get/v1/sdk/merchant
Response
Merchant identity
Example response
{
"companyNumber": "HRB12345",
"country": "US",
"defaultCurrency": "usd",
"displayName": "Acme",
"iconUrl": "https://cdn.acme.com/icon.png",
"legalName": "Acme Inc.",
"logoUrl": "https://cdn.acme.com/logo.png",
"privacyUrl": "https://acme.com/privacy",
"statementDescriptor": "ACME INC",
"supportedTopupCurrencies": [
"USD",
"EUR",
"GBP"
],
"supportEmail": "support@acme.com",
"supportUrl": "https://acme.com/support",
"taxId": "12-3456789",
"termsUrl": "https://acme.com/terms",
"vatNumber": "DE123456789"
}