Hey,
I'm looking for possibility to retrieve all agreed contracts with body content for particular signer.
So my current approach is to use endpoint https://clickwrap-developer.ironcladapp.com/reference/retrieve-activity-by-signer-id to get all Activities by signerId.
With that endpoint I get initial metadata like contractId, signing date (create_time), download_url. version (this is hashed version of contract) and filter the activities for 'agreed' event_type.
With those data I can make another call to get contract metadata, but I cannot find endpoint which would accept the version hash. There are only https://clickwrap-developer.ironcladapp.com/reference/get-a-contract and https://clickwrap-developer.ironcladapp.com/reference/get-a-version-by-number but neither of them takes hashed version. One I assume returns just the latest version and second takes version in index number.
How can I retrieve the exact version when I have only hashed version?