GET Workflow/GetWorkflowEntryPointByRequestTypeID?requestTypeID={requestTypeID}

Gets the workflow entrypoint that should be used for new requests based on the request type

Request Information

URI Parameters

NameDescriptionTypeAdditional information
requestTypeID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

WorkflowActivityDTO
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

Start

Gets or sets if the activity is a starting point for a workflow.

boolean

None.

End

Gets or sets if the activity is a termination point for a workflow.

boolean

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Description": "sample string 2",
      "Start": true,
      "End": true,
      "ID": "3fdfb4d8-1a93-4228-8613-1818f56a6cb9",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Description":"sample string 2","Start":true,"End":true,"ID":"3fdfb4d8-1a93-4228-8613-1818f56a6cb9","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<WorkflowActivityDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">3fdfb4d8-1a93-4228-8613-1818f56a6cb9</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <Description>sample string 2</Description>
  <End>true</End>
  <Name>sample string 1</Name>
  <Start>true</Start>
</WorkflowActivityDTO>