GET api/GetProgressByWorkPack?modelname={modelname}&workpackTitle={workpackTitle}&db={db}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| modelname | string |
Required |
|
| workpackTitle | string |
Required |
|
| db | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WorkPackStepProgressRecord| Name | Description | Type | Additional information |
|---|---|---|---|
| wiHeaderStepID | integer |
None. |
|
| description | string |
None. |
|
| modelname | string |
None. |
|
| workPackTitle | string |
None. |
|
| percentageComplete | decimal number |
None. |
|
| jobCardTitle | string |
None. |
|
| stepNumber | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"wiHeaderStepID": 1,
"description": "sample string 2",
"modelname": "sample string 3",
"workPackTitle": "sample string 4",
"percentageComplete": 5.1,
"jobCardTitle": "sample string 6",
"stepNumber": 7
},
{
"wiHeaderStepID": 1,
"description": "sample string 2",
"modelname": "sample string 3",
"workPackTitle": "sample string 4",
"percentageComplete": 5.1,
"jobCardTitle": "sample string 6",
"stepNumber": 7
}
]
text/xml
Sample:
<ArrayOfWorkPackStepProgressRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models.JobSetting">
<WorkPackStepProgressRecord>
<description>sample string 2</description>
<jobCardTitle>sample string 6</jobCardTitle>
<modelname>sample string 3</modelname>
<percentageComplete>5.1</percentageComplete>
<stepNumber>7</stepNumber>
<wiHeaderStepID>1</wiHeaderStepID>
<workPackTitle>sample string 4</workPackTitle>
</WorkPackStepProgressRecord>
<WorkPackStepProgressRecord>
<description>sample string 2</description>
<jobCardTitle>sample string 6</jobCardTitle>
<modelname>sample string 3</modelname>
<percentageComplete>5.1</percentageComplete>
<stepNumber>7</stepNumber>
<wiHeaderStepID>1</wiHeaderStepID>
<workPackTitle>sample string 4</workPackTitle>
</WorkPackStepProgressRecord>
</ArrayOfWorkPackStepProgressRecord>