Home / API / ASP.NET Web API Details

GET api/v2/Estimate/GetEstimateListByScheduledate?companyId={companyId}&fromdate={fromdate}&todate={todate}

Description

Get estimate list by scheduledate

Request Information

Parameters

NameDescriptionAdditional information
companyId

Define this parameter in the request URI.

fromdate

Define this parameter in the request URI.

todate

Define this parameter in the request URI.

Response Information

{ "estimateid": 1, "accountid": 2, "description": "sample string 3", "salespersonid": 4, "salesperson": "sample string 5", "scheduledate": "sample string 6", "saledate": "sample string 7", "rejectdate": "sample string 8", "completeddate": "sample string 9" }

Response body formats

application/json, text/json

Sample:
[
  {
    "estimateid": 1,
    "accountid": 2,
    "description": "sample string 3",
    "salespersonid": 4,
    "salesperson": "sample string 5",
    "scheduledate": "sample string 6",
    "saledate": "sample string 7",
    "rejectdate": "sample string 8",
    "completeddate": "sample string 9",
    "servicecenterid": 10,
    "proposalamount": 11.0,
    "totalprogramstied": 12
  },
  {
    "estimateid": 1,
    "accountid": 2,
    "description": "sample string 3",
    "salespersonid": 4,
    "salesperson": "sample string 5",
    "scheduledate": "sample string 6",
    "saledate": "sample string 7",
    "rejectdate": "sample string 8",
    "completeddate": "sample string 9",
    "servicecenterid": 10,
    "proposalamount": 11.0,
    "totalprogramstied": 12
  }
]

application/xml, text/xml

Sample:
<ArrayOfestimatedaterangemodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <estimatedaterangemodel>
    <accountid>2</accountid>
    <completeddate>sample string 9</completeddate>
    <description>sample string 3</description>
    <estimateid>1</estimateid>
    <proposalamount>11</proposalamount>
    <rejectdate>sample string 8</rejectdate>
    <saledate>sample string 7</saledate>
    <salesperson>sample string 5</salesperson>
    <salespersonid>4</salespersonid>
    <scheduledate>sample string 6</scheduledate>
    <servicecenterid>10</servicecenterid>
    <totalprogramstied>12</totalprogramstied>
  </estimatedaterangemodel>
  <estimatedaterangemodel>
    <accountid>2</accountid>
    <completeddate>sample string 9</completeddate>
    <description>sample string 3</description>
    <estimateid>1</estimateid>
    <proposalamount>11</proposalamount>
    <rejectdate>sample string 8</rejectdate>
    <saledate>sample string 7</saledate>
    <salesperson>sample string 5</salesperson>
    <salespersonid>4</salespersonid>
    <scheduledate>sample string 6</scheduledate>
    <servicecenterid>10</servicecenterid>
    <totalprogramstied>12</totalprogramstied>
  </estimatedaterangemodel>
</ArrayOfestimatedaterangemodel>