Get a list of product categories

Retrieve all the product categories in one go.

The GET /ProductCategories endpoint allows users to retrieve a comprehensive list of all product categories available within the FincoEnergies platform. This endpoint is essential for understanding the various categories of products that you can interact with, providing foundational data for further API operations.

Default request:

Request body:

  • No input fields needed

Parameters:

  • No parameters needed

Default response:

200: Default response

{
"ProductCategory": [
{
"ProductID": "GZ005",
"Brand": "GoodZero",
"ProductName": "Wind/34 MW Capacity in Maharashtra (GS4707 - 2020)",
"ProductSource": "Renewable Energy",
"ProductType": "Avoidance",
"Vintage": "2020",
"ProductDescription": "Wind/34 MW Capacity in Maharashtra (GS4707 - 2020)\n"
}
]
}

422: Validation error response:

{
"error": "Description of validation error."
}

500: Default error message:

{
"error": "Description of the error(s) that occurred."
}

504: Timeout error response:

{
"error": "Timeout waiting for response"
}