{ "success": false, "error": { "status": 400, "code": "VALIDATION_INVALID", "message": "Invalid product data" }, "data": null }
Create a new product
curl -X POST https://api.transaction.gg/merchant/product/create \ -H "Authorization: Bearer jwt_token" \ -H "Content-Type: application/json" \ -d '{ "name": "Premium Plan", "description": "Monthly premium subscription", "recurring": true, "recurringInterval": "monthly", "metadata": { "category": "subscription" } }'
{ "success": true, "data": { "id": "prod_X4dUuzsMaruQ4UsX", "name": "Premium Plan", "description": "Monthly premium subscription", "recurring": true, "recurringInterval": "monthly", "metadata": { "category": "subscription" }, "active": true, "createdAt": "2024-01-01T00:00:00Z" } }