Home / API / ASP.NET Web API Details

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

Description

Total number of estimates and completed jobs

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:26:08.7537989+00:00",
  "todate": "2025-02-23T06:26:08.7537989+00:00",
  "total": 1,
  "jobscompleted": 2,
  "jobscompletedrate": 3.0,
  "message": "sample string 4"
}

application/xml, text/xml

Sample:
<estimatejobscompletedmodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <fromdate>2025-02-23T06:26:08.7537989+00:00</fromdate>
  <jobscompleted>2</jobscompleted>
  <jobscompletedrate>3</jobscompletedrate>
  <message>sample string 4</message>
  <todate>2025-02-23T06:26:08.7537989+00:00</todate>
  <total>1</total>
</estimatejobscompletedmodel>