POST api/Pool/UpdatePool

Request Information

URI Parameters

None.

Body Parameters

NewPoolDTO
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'NewPoolDTO'.

Response Information

Resource Description

BaseModel
NameDescriptionTypeAdditional 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
}