API Reference
Merchant contact endpoints
Manage contacts associated with merchants.
GET /api/public/v1/merchants/:merchantId/contacts
Required Scope: contacts:read
GET /api/public/v1/merchants/:merchantId/contacts/:contactId
Required Scope: contacts:read
POST /api/public/v1/merchants/:merchantId/contacts
Required Scope: contacts:write
{
"firstName": "John",
"lastName": "Smith",
"email": "john@example.com",
"phone": "(555) 123-4567",
"title": "Owner",
"isPrimary": true,
"isOwner": true,
"ownershipPercentage": 100
}
PATCH /api/public/v1/merchants/:merchantId/contacts/:contactId
Required Scope: contacts:write
DELETE /api/public/v1/merchants/:merchantId/contacts/:contactId
Required Scope: contacts:write
Returns 204 No Content on success.