GET api/admin/Workflow/GetWorkflowActionTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfListOfDropdownDTO
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of DropdownDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": [
    {
      "Value": 1,
      "Text": "sample string 2"
    },
    {
      "Value": 1,
      "Text": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ApiResponseOfArrayOfDropdownDTOj_Pf0XX_P4 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels">
    <d2p1:DropdownDTO>
      <d2p1:Text>sample string 2</d2p1:Text>
      <d2p1:Value>1</d2p1:Value>
    </d2p1:DropdownDTO>
    <d2p1:DropdownDTO>
      <d2p1:Text>sample string 2</d2p1:Text>
      <d2p1:Value>1</d2p1:Value>
    </d2p1:DropdownDTO>
  </Data>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponseOfArrayOfDropdownDTOj_Pf0XX_P4>