{ "success": false, "error": { "status": 401, "code": "UNAUTHORISED", "message": "Invalid or missing authentication" }, "data": null }
List all merchants for the authenticated user
curl -X GET https://api.transaction.gg/merchant/list \ -H "Authorization: Bearer jwt_token"
{ "success": true, "data": { "merchants": [ { "id": "merchant_uuid", "name": "My Store", "domain": "mystore.com", "isVerified": false, "createdAt": "2024-01-01T00:00:00Z" } ] } }