List all of the products available within your Paddle account.
curl -X POST \
-d 'vendor_id=123' \
-d 'vendor_auth_code=123:456abc' \
https://vendors.paddle.com/api/2.0/product/get_products
{
"success": true,
"response": {
"total": 2,
"count": 2,
"products": [
{
"id": 489171,
"name": "A Product",
"description": "A description of the product.",
"base_price": 58,
"sale_price": null,
"screenshots": [],
"icon": "https://paddle-static.s3.amazonaws.com/email/2013-04-10/og.png"
},
{
"id": 489278,
"name": "Another Product",
"description": null,
"base_price": 39.99,
"sale_price": null,
"screenshots": [],
"icon": "https://paddle.s3.amazonaws.com/user/91/489278geekbench.png"
}
]
}
}