# Get all strategy versions metadata for contract Retrieves a list of metadata for all pricing strategy versions associated with a specific contract. This endpoint provides version history information including creation dates, modification timestamps, and strategy metadata for tracking changes over time. Endpoint: GET /api/v3/vendor/contracts/{contractId}/settings/pricingstrategies/history Version: 0.0.7228 Security: BasicAuth, BearerAuth ## Path parameters: - `contractId` (string, required) Unique identifier of the contract Example: "qbcxvb" ## Response 200 fields (application/json): - `data` (object, required) Version history of all strategies - `data.history` (array, required) contains metadata of all strategies - `data.history.documentVersion` (integer, required) strategy version per contract - `data.history.documentVersionMessage` (string) message provided by user when saving new strategy - `data.history.version` (string, required) schema version of the strategy - `data.history.updateDate` (string) timestamp of last strategy update. It needs to be an option to ensure old strategies can be read. - `data.history.updatedBy` (string) user email of the account that updated the strategy. It needs to be an option to ensure old strategies can be read.