POST api/AgencySupportTask/PerformTaskActions

Request Information

URI Parameters

None.

Body Parameters

TasksSupportedModelDTO
NameDescriptionTypeAdditional information
CompletedTaskIds

Collection of integer

None.

UnCompletedTaskIds

Collection of integer

None.

DeletedTaskIds

Collection of integer

None.

CreateTaskList

Dictionary of integer [key] and string [value]

None.

IsCreate

boolean

None.

IsDelete

boolean

None.

IsCompleted

boolean

None.

userId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CompletedTaskIds": [
    1,
    2
  ],
  "UnCompletedTaskIds": [
    1,
    2
  ],
  "DeletedTaskIds": [
    1,
    2
  ],
  "CreateTaskList": {
    "1": "sample string 2",
    "3": "sample string 4"
  },
  "IsCreate": true,
  "IsDelete": true,
  "IsCompleted": true,
  "userId": 4
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true