POST api/ticket/productivitylist

Request Information

URI Parameters

None.

Body Parameters

QueryProductivityParam
NameDescriptionTypeAdditional information
productionStepId

integer

None.

processStepId

integer

None.

fromDate

string

None.

toDate

string

None.

page

integer

None.

pageSize

integer

None.

total

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "productionStepId": 1,
  "processStepId": 1,
  "fromDate": "sample string 2",
  "toDate": "sample string 3",
  "page": 4,
  "pageSize": 5,
  "total": 6
}

text/xml

Sample:
<QueryProductivityParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LongHungApp.WebApi.Areas.Factory.Models">
  <FromDate>sample string 2</FromDate>
  <Page>4</Page>
  <PageSize>5</PageSize>
  <ProcessStepId>1</ProcessStepId>
  <ProductionStepId>1</ProductionStepId>
  <ToDate>sample string 3</ToDate>
  <Total>6</Total>
</QueryProductivityParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.