{ "success": false, "error": { "status": 401, "code": "UNAUTHORISED", "message": "Invalid or missing authentication" }, "data": null }
List prices for a product
curl -X GET "https://api.transaction.gg/merchant/price/list?productId=prod_X4dUuzsMaruQ4UsX&page=1&limit=10" \ -H "Authorization: Bearer jwt_token"
{ "success": true, "data": { "prices": [ { "id": "price_i62wKFQ8sGnLxQ5G", "productId": "prod_X4dUuzsMaruQ4UsX", "amount": "29.99", "currency": "USD", "active": true, "createdAt": "2024-01-01T00:00:00Z" } ], "pagination": { "page": 1, "limit": 10, "total": 1 } } }