GET api/poolapi/pool/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PoolViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| description | string |
Required String length: inclusive between 0 and 250 |
|
| id | globally unique identifier |
None. |
|
| site_id | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"active": true,
"description": "sample string 2",
"id": "e72146e5-67db-4043-b677-589bcf4c6372",
"site_id": "95f3eb6e-76f3-4bce-acd9-45db7a986c95"
}
application/xml, text/xml
Sample:
<pool xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <description>sample string 2</description> <id>e72146e5-67db-4043-b677-589bcf4c6372</id> <site_id>95f3eb6e-76f3-4bce-acd9-45db7a986c95</site_id> </pool>