POST api/ActivityManager/BulkTaskPreview
Request Information
URI Parameters
None.
Body Parameters
StatusAssignment| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskKey | string |
None. |
|
| IsBulkAssignment | boolean |
None. |
|
| StatusIdentity | globally unique identifier |
None. |
|
| IncludeAllOccurrences | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"TaskKey": "sample string 1",
"IsBulkAssignment": true,
"StatusIdentity": "bf3f20ca-58e3-49e9-9bbe-d481a9a4e3a6",
"IncludeAllOccurrences": true
}
application/xml, text/xml
Sample:
<StatusAssignment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model"> <IncludeAllOccurrences>true</IncludeAllOccurrences> <IsBulkAssignment>true</IsBulkAssignment> <StatusIdentity>bf3f20ca-58e3-49e9-9bbe-d481a9a4e3a6</StatusIdentity> <TaskKey>sample string 1</TaskKey> </StatusAssignment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EventStatusChangeStatistics| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskKey | string |
None. |
|
| EventCount | integer |
None. |
|
| EventOccurrenceCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TaskKey": "sample string 1",
"EventCount": 2,
"EventOccurrenceCount": 3
}
application/xml, text/xml
Sample:
<EventStatusChangeStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model"> <EventCount>2</EventCount> <EventOccurrenceCount>3</EventOccurrenceCount> <TaskKey>sample string 1</TaskKey> </EventStatusChangeStatistics>