List benefit products
benefit_products.list(BenefitProductListParams**kwargs) -> BenefitProductListResponse
/v1/benefit-products
Retrieves a paginated list of all benefit products that the authenticated organization has access to and can offer to their employers. Use query parameters to filter by category, product code, or active status.
Parameters
Filter by active status
limit: Optional[int]
Items per page (default: 20, max: 100)
minimum1
maximum100
page: Optional[int]
Page number (default: 1)
minimum1
Returns
List benefit products
from vitable_connect_api import VitableConnectAPI
client = VitableConnectAPI(
api_key="My API Key",
)
benefit_products = client.benefit_products.list()
print(benefit_products)
[
{
"id": "id",
"active": true,
"category": "Medical",
"created_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"product_code": "EBA",
"updated_at": "2019-12-27T18:11:19.117Z",
"carrier_name": "carrier_name",
"description": "description"
}
]
Returns Examples
[
{
"id": "id",
"active": true,
"category": "Medical",
"created_at": "2019-12-27T18:11:19.117Z",
"name": "name",
"product_code": "EBA",
"updated_at": "2019-12-27T18:11:19.117Z",
"carrier_name": "carrier_name",
"description": "description"
}
]