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": "ed8e95ca-e57b-45ca-9341-e986d3abed86",
"site_id": "649f902d-b1ed-428f-a45b-7ca97ad42c5f"
}
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>ed8e95ca-e57b-45ca-9341-e986d3abed86</id> <site_id>649f902d-b1ed-428f-a45b-7ca97ad42c5f</site_id> </pool>