I'm trying to access to a specific value stored in the rest1-v1 api of versionOne.
I can acces to it typing the whole adress into my favorite navigator
rest-1.v1/Data/Actual?sel=Date,Value&where=Workitem.ID='Story:114192'
which returns:
<Assets total="1" pageSize="2147483647" pageStart="0">
<Asset href="/VersionOne/rest-1.v1/Data/Actual/158630" id="Actual:158630">
<Attribute name="Date">2014-10-23</Attribute>
<Attribute name="Value">40</Attribute>
</Asset>
</Assets>
What I would like to do, is to access to the attribute "Value" listed above but threw the versionone.sdk.ApiClient.
I did all the stuff about connector (meta and data), but I really do not figure out how to make my query to return this value stored into this API.
I hope I am clear enough,
Regards,