.NET client
To consume the REST api using C# you can use the standard Client class and use the Get
Example using Get and asset search
var parameters = new NameValueCollection
{
{"$search","flower"},
{"$top","10"}
};
var oDataResponse = client.Get<ODataResponse<Asset>>("assets", parameters);
if (oDataResponse?.Value != null)
{
foreach (var asset in oDataResponse.Value)
{
//...
}
}