GET api/{projectID}/Print
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Print| Name | Description | Type | Additional information |
|---|---|---|---|
| printId | string |
None. |
|
| type | string |
None. |
|
| text | string |
None. |
|
| location | string |
None. |
|
| printIP | string |
None. |
|
| printURL | string |
None. |
|
| timeSpanMins | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"printId": "sample string 1",
"type": "sample string 2",
"text": "sample string 3",
"location": "sample string 4",
"printIP": "sample string 5",
"printURL": "sample string 6",
"timeSpanMins": 7
},
{
"printId": "sample string 1",
"type": "sample string 2",
"text": "sample string 3",
"location": "sample string 4",
"printIP": "sample string 5",
"printURL": "sample string 6",
"timeSpanMins": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfPrint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi">
<Print>
<location>sample string 4</location>
<printIP>sample string 5</printIP>
<printId>sample string 1</printId>
<printURL>sample string 6</printURL>
<text>sample string 3</text>
<timeSpanMins>7</timeSpanMins>
<type>sample string 2</type>
</Print>
<Print>
<location>sample string 4</location>
<printIP>sample string 5</printIP>
<printId>sample string 1</printId>
<printURL>sample string 6</printURL>
<text>sample string 3</text>
<timeSpanMins>7</timeSpanMins>
<type>sample string 2</type>
</Print>
</ArrayOfPrint>