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": "0d51b63d-e0ce-48a9-8aea-bfe94cb6291a",
"site_id": "d6a0f0bd-d29c-490d-b58c-1b5772e89aeb"
}
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>0d51b63d-e0ce-48a9-8aea-bfe94cb6291a</id> <site_id>d6a0f0bd-d29c-490d-b58c-1b5772e89aeb</site_id> </pool>