GET api/lockapi/lock/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
LockViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| name | string |
String length: inclusive between 0 and 100 |
|
| direction | string |
Required String length: inclusive between 0 and 2 |
|
| distribution_id | globally unique identifier |
None. |
|
| guard_id | globally unique identifier |
None. |
|
| active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "174b2bc4-c2f9-468a-9420-0701e4e15f4e",
"name": "sample string 2",
"direction": "sample string 3",
"distribution_id": "1cb3f76a-4a40-47b0-99fc-0fb2ffafcc6d",
"guard_id": "7d04f731-9000-4c50-9887-fbbbe893da0c",
"active": true
}
application/xml, text/xml
Sample:
<lock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <direction>sample string 3</direction> <distribution_id>1cb3f76a-4a40-47b0-99fc-0fb2ffafcc6d</distribution_id> <guard_id>7d04f731-9000-4c50-9887-fbbbe893da0c</guard_id> <id>174b2bc4-c2f9-468a-9420-0701e4e15f4e</id> <name>sample string 2</name> </lock>