Home / API / ASP.NET Web API Details

POST api/v1/Estimate/EstimateConversionRate?fromdate={fromdate}&todate={todate}&companyid={companyid}

Description

Conversion Rate

Request Information

Parameters

NameDescriptionAdditional information
fromdate

Define this parameter in the request URI.

todate

Define this parameter in the request URI.

companyid

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "fromdate": "2025-02-23T06:13:10.9349315+00:00",
  "todate": "2025-02-23T06:13:10.9349315+00:00",
  "total": 1,
  "sales": 2,
  "ratesale": 3.0,
  "message": "sample string 4"
}

application/xml, text/xml

Sample:
<estimateconversionratemodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <fromdate>2025-02-23T06:13:10.9349315+00:00</fromdate>
  <message>sample string 4</message>
  <ratesale>3</ratesale>
  <sales>2</sales>
  <todate>2025-02-23T06:13:10.9349315+00:00</todate>
  <total>1</total>
</estimateconversionratemodel>