POST api/Pool/UpdatePool
Request Information
URI Parameters
None.
Body Parameters
NewPoolDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PoolId | integer |
None. |
|
| Title | string |
None. |
|
| UserId | integer |
None. |
|
| CreatedDate | date |
None. |
|
| CollaborationIds | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PoolId": 1,
"Title": "sample string 2",
"UserId": 1,
"CreatedDate": "2025-12-19T18:42:55.2778455+00:00",
"CollaborationIds": [
1,
2
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| items | Object |
None. |
|
| message | string |
None. |
|
| total | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"items": {},
"message": "sample string 3",
"total": 4
}