GET api/Users/Workflows

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WorkflowsToUsersDTO
NameDescriptionTypeAdditional information
Email

string

None.

WorkflowName

string

None.

WorkflowType

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Email": "sample string 1",
    "WorkflowName": "sample string 2",
    "WorkflowType": 3
  },
  {
    "Email": "sample string 1",
    "WorkflowName": "sample string 2",
    "WorkflowType": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfWorkflowsToUsersDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Captio.Api.Dto">
  <WorkflowsToUsersDTO>
    <Email>sample string 1</Email>
    <WorkflowName>sample string 2</WorkflowName>
    <WorkflowType>3</WorkflowType>
  </WorkflowsToUsersDTO>
  <WorkflowsToUsersDTO>
    <Email>sample string 1</Email>
    <WorkflowName>sample string 2</WorkflowName>
    <WorkflowType>3</WorkflowType>
  </WorkflowsToUsersDTO>
</ArrayOfWorkflowsToUsersDTO>