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": "73e67620-c5b3-4033-8b48-901a3b594f98",
"site_id": "38baee61-1ab3-44a9-b652-ca73d0a5d068"
}
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>73e67620-c5b3-4033-8b48-901a3b594f98</id> <site_id>38baee61-1ab3-44a9-b652-ca73d0a5d068</site_id> </pool>