{ "success": false, "error": { "status": 401, "code": "UNAUTHORISED", "message": "Invalid or missing authentication" }, "data": null }
List all products
curl -X GET "https://api.transaction.gg/merchant/product/list?page=1&limit=10&active=true" \ -H "Authorization: Bearer jwt_token"
{ "success": true, "data": { "products": [ { "id": "prod_X4dUuzsMaruQ4UsX", "name": "Premium Plan", "description": "Monthly premium subscription", "recurring": true, "recurringInterval": "monthly", "active": true, "createdAt": "2024-01-01T00:00:00Z" } ], "pagination": { "page": 1, "limit": 10, "total": 1 } } }