GET WorkflowExport/GetWorkflowStatusByName?workflowName={workflowName}

Export workflow and according status

Request Information

URI Parameters

NameDescriptionTypeAdditional information
workflowName

name of workflow

string

Required

Body Parameters

None.

Response Information

Resource Description

workflow and enumeration of according status

InitPro.Ida.Web.Api.Dto.Workflow
NameDescriptionTypeAdditional information
Name

Name of Workflow

string

None.

StatusList

Enumeration of Status

Collection of InitPro.Ida.Web.Api.Dto.Status

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusList": [
    {
      "StatusName": "sample string 1",
      "StatusKey": "sample string 2"
    },
    {
      "StatusName": "sample string 1",
      "StatusKey": "sample string 2"
    }
  ],
  "Name": "sample string 1"
}

application/xml, text/xml

Sample:
<Workflow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">
  <Name>sample string 1</Name>
  <StatusList>
    <Status>
      <StatusKey>sample string 2</StatusKey>
      <StatusName>sample string 1</StatusName>
    </Status>
    <Status>
      <StatusKey>sample string 2</StatusKey>
      <StatusName>sample string 1</StatusName>
    </Status>
  </StatusList>
</Workflow>