Products
Get All Products
Products
Get All Products
Retrieve details of all Corrily products.
GET
/
v1
/
products
curl --location --request GET 'https://client.corrily.com/v1/products'
{
"message": "Successfully retrieved product.",
"success": true,
"products": [
{
"api_id": "monthly",
"name": "Monthly Product",
"base_px": 10.0,
"max_px": 999.0,
"min_px": 0.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid"
}
]
},
{
"api_id": "yearly",
"name": "Yearly Product",
"base_px": 100.0,
"max_px": 9999.0,
"min_px": 100.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid_yearly"
}
]
}
]
curl --location --request GET 'https://client.corrily.com/v1/products'
{
"message": "Successfully retrieved product.",
"success": true,
"products": [
{
"api_id": "monthly",
"name": "Monthly Product",
"base_px": 10.0,
"max_px": 999.0,
"min_px": 0.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid"
}
]
},
{
"api_id": "yearly",
"name": "Yearly Product",
"base_px": 100.0,
"max_px": 9999.0,
"min_px": 100.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid_yearly"
}
]
}
]
Response
Whether or not the request completed successfully.
Text information about request status. In case of an error here will be a useful explanation.
List of all your products
Look for the product description on the page Get Product.
curl --location --request GET 'https://client.corrily.com/v1/products'
{
"message": "Successfully retrieved product.",
"success": true,
"products": [
{
"api_id": "monthly",
"name": "Monthly Product",
"base_px": 10.0,
"max_px": 999.0,
"min_px": 0.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid"
}
]
},
{
"api_id": "yearly",
"name": "Yearly Product",
"base_px": 100.0,
"max_px": 9999.0,
"min_px": 100.0,
"integrations": [
{
"type": "stripe",
"stripe_product_id": "my_stripe_pid_yearly"
}
]
}
]