GET api/Job/{id}?jobSId={jobSId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
jobSId | string |
Required |
|
id | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ComponentGridViewModelName | Description | Type | Additional information |
---|---|---|---|
Index | integer |
None. |
|
Group | integer |
None. |
|
CategoryId | integer |
None. |
|
CategoryName | string |
None. |
|
StyleId | integer |
None. |
|
StyleName | string |
None. |
|
TimberId | integer |
None. |
|
TimberName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "index": 1, "group": 2, "categoryId": 3, "categoryName": "sample string 4", "styleId": 1, "styleName": "sample string 5", "timberId": 1, "timberName": "sample string 6" }, { "index": 1, "group": 2, "categoryId": 3, "categoryName": "sample string 4", "styleId": 1, "styleName": "sample string 5", "timberId": 1, "timberName": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfComponentGridViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <ComponentGridViewModel> <CategoryId>3</CategoryId> <CategoryName>sample string 4</CategoryName> <Group>2</Group> <Index>1</Index> <StyleId>1</StyleId> <StyleName>sample string 5</StyleName> <TimberId>1</TimberId> <TimberName>sample string 6</TimberName> </ComponentGridViewModel> <ComponentGridViewModel> <CategoryId>3</CategoryId> <CategoryName>sample string 4</CategoryName> <Group>2</Group> <Index>1</Index> <StyleId>1</StyleId> <StyleName>sample string 5</StyleName> <TimberId>1</TimberId> <TimberName>sample string 6</TimberName> </ComponentGridViewModel> </ArrayOfComponentGridViewModel>