{ "success": false, "error": { "status": 400, "code": "VALIDATION_INVALID", "message": "Invalid verification method" }, "data": null }
Verify domain ownership
curl -X POST https://api.transaction.gg/merchant/verify-domain \ -H "Authorization: Bearer jwt_token" \ -H "Content-Type: application/json" \ -d '{ "merchantId": "merchant_uuid", "method": "dns" }'
{ "success": true, "data": { "verification": { "method": "dns", "instructions": "Add TXT record: transaction-verification=abc123", "token": "abc123" } } }