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": "64dfc72a-15d2-4820-a0a9-4a9482bf9372",
"site_id": "cf515e93-4359-4d66-9564-85974e171092"
}
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>64dfc72a-15d2-4820-a0a9-4a9482bf9372</id> <site_id>cf515e93-4359-4d66-9564-85974e171092</site_id> </pool>