Method DeleteProcesses
DeleteProcesses(String, List<String>)
Delete processes
Declaration
List<string> DeleteProcesses(string connectionId, List<string> processIds)
Parameters
Type | Name | Description |
---|---|---|
System.String | connectionId | The connection id to identify your connection. See also ConnectionId |
System.Collections.Generic.List<System.String> | processIds | List of process ids to delete |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | List of deleted process ids |
Examples
POST http://YourServerName/InfoShare/Json/Process/DeleteProcesses
Example for delete processes-
{
"connectionId": "1fbe116a-20a9-4378-b198-6cf3283f0238",
"processIds": ["7f319f71-74db-e911-a946-00155d290a08", "ad24ab77-74db-e911-a946-00155d290a08"]
}
Response:
{
"DeleteProcessesResult": ["7f319f71-74db-e911-a946-00155d290a08", "ad24ab77-74db-e911-a946-00155d290a08"]
}
Exceptions
Type | Condition |
---|---|
ServiceException | The connection id {connectionId} isn't valid or has expired (10008) |
ServiceException | Verification code is needed: Verification code not yet verified (10152) |