GET api/taskprocessor/processes/{processId}/folders

Get folders used by a process (if any)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
processId

Process id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TaskProcessorProcessFolderModel
NameDescriptionTypeAdditional information
Id

integer

None.

FolderPathToWatch

string

None.

FolderPathToMoveFile

string

None.

ProcessId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "folderPathToWatch": "sample string 2",
  "folderPathToMoveFile": "sample string 3",
  "processId": 4
}

application/xml, text/xml

Sample:
<TaskProcessorProcessFolderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Core.Models">
  <FolderPathToMoveFile>sample string 3</FolderPathToMoveFile>
  <FolderPathToWatch>sample string 2</FolderPathToWatch>
  <Id>1</Id>
  <ProcessId>4</ProcessId>
</TaskProcessorProcessFolderModel>