GET api/WorkflowLinePool/GetWorkflowLinePoolForWorkflow?accountID={accountID}&workflowItemID={workflowItemID}&metaValue_ActionFlowGroupID={metaValue_ActionFlowGroupID}&isAutomatic={isAutomatic}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

workflowItemID

integer

Required

metaValue_ActionFlowGroupID

integer

Required

isAutomatic

boolean

Required

Body Parameters

None.

Response Information

Resource Description

WorkflowLinePoolVM
NameDescriptionTypeAdditional information
WorkflowLineID

integer

None.

PoolID

integer

None.

PoolList

Collection of PoolForList

None.

StatusID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "WorkflowLineID": 1,
  "PoolID": 1,
  "PoolList": [
    {
      "PoolID": 1,
      "Pool": "sample string 2"
    },
    {
      "PoolID": 1,
      "Pool": "sample string 2"
    }
  ],
  "StatusID": 1
}

application/xml, text/xml

Sample:
<WorkflowLinePoolVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels">
  <PoolID>1</PoolID>
  <PoolList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Pool">
    <d2p1:PoolForList>
      <d2p1:Pool>sample string 2</d2p1:Pool>
      <d2p1:PoolID>1</d2p1:PoolID>
    </d2p1:PoolForList>
    <d2p1:PoolForList>
      <d2p1:Pool>sample string 2</d2p1:Pool>
      <d2p1:PoolID>1</d2p1:PoolID>
    </d2p1:PoolForList>
  </PoolList>
  <StatusID>1</StatusID>
  <WorkflowLineID>1</WorkflowLineID>
</WorkflowLinePoolVM>