## Retrieve `products.retrieve(strcode) -> ProductRetrieveResponse` **get** `/products/{code}` Gets a product by code ### Parameters - `code: str` Product code ### Returns - `class ProductRetrieveResponse: …` - `data: Data` Product object - `id: str` Unique identifier for the product - `code: str` User-defined product identifier. - `created: datetime` ISO 8601 timestamp when the product was created - `description: str` Description of the product - `paid_by_roles: List[DataPaidByRole]` User roles that can pay for this product - `id: str` The unique ID of the role - `name: str` The name of the role - `paid_to_roles: List[DataPaidToRole]` User roles that receive payment for this product - `id: str` The unique ID of the role - `name: str` The name of the role - `update_version: float` Version number for optimistic locking - `workspace_id: str` Workspace ID this product belongs to ### Example ```python from fragment import Fragment client = Fragment() product = client.products.retrieve( "PROD_001", ) print(product.data) ```