GET api/pcapi/pc/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PCViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| cleanroom_id | globally unique identifier |
None. |
|
| db_login | string |
String length: inclusive between 0 and 50 |
|
| db_name | string |
String length: inclusive between 0 and 50 |
|
| db_password | string |
String length: inclusive between 0 and 50 |
|
| db_source | string |
String length: inclusive between 0 and 50 |
|
| id | globally unique identifier |
None. |
|
| local_ip | string |
String length: inclusive between 0 and 15 |
|
| lock_id | globally unique identifier |
None. |
|
| mac_address | string |
Required String length: inclusive between 0 and 30 |
|
| name | string |
String length: inclusive between 0 and 100 |
|
| pc_type_id | globally unique identifier |
None. |
|
| rights | Collection of ShortRightViewModel |
None. |
|
| site_id | globally unique identifier |
None. |
|
| zone_id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"active": true,
"cleanroom_id": "24c855aa-c963-45c1-aeb1-f98ba3f7dc17",
"db_login": "sample string 2",
"db_name": "sample string 3",
"db_password": "sample string 4",
"db_source": "sample string 5",
"id": "f8528215-7f58-4f84-b8ff-922369776ea0",
"local_ip": "sample string 7",
"lock_id": "7b7dedc0-41c8-4efd-ad04-d218fee22cd4",
"mac_address": "sample string 8",
"name": "sample string 9",
"pc_type_id": "b35dc0da-5fa2-4a8b-aed4-9d31279b13cf",
"rights": [
{
"code": "sample string 1",
"id": "4e947c49-5de4-4433-9ea7-d780115b4e36"
},
{
"code": "sample string 1",
"id": "4e947c49-5de4-4433-9ea7-d780115b4e36"
}
],
"site_id": "88a127de-7a8a-4b8a-b02a-65a43ad8badb",
"zone_id": "310c25cc-5a55-4084-92ef-ed168a04f3a5"
}
application/xml, text/xml
Sample:
<pc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<active>true</active>
<cleanroom_id>24c855aa-c963-45c1-aeb1-f98ba3f7dc17</cleanroom_id>
<db_login>sample string 2</db_login>
<db_name>sample string 3</db_name>
<db_password>sample string 4</db_password>
<db_source>sample string 5</db_source>
<id>f8528215-7f58-4f84-b8ff-922369776ea0</id>
<local_ip>sample string 7</local_ip>
<lock_id>7b7dedc0-41c8-4efd-ad04-d218fee22cd4</lock_id>
<mac_address>sample string 8</mac_address>
<name>sample string 9</name>
<pc_type_id>b35dc0da-5fa2-4a8b-aed4-9d31279b13cf</pc_type_id>
<rights>
<right>
<ID>4e947c49-5de4-4433-9ea7-d780115b4e36</ID>
<code>sample string 1</code>
</right>
<right>
<ID>4e947c49-5de4-4433-9ea7-d780115b4e36</ID>
<code>sample string 1</code>
</right>
</rights>
<site_id>88a127de-7a8a-4b8a-b02a-65a43ad8badb</site_id>
<zone_id>310c25cc-5a55-4084-92ef-ed168a04f3a5</zone_id>
</pc>