GET Workflow/GetWorkflowActivity?workflowActivityID={workflowActivityID}

Gets the specific workflow activity information based on the specified ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
workflowActivityID

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": "4ef6be7b-b031-4ca5-9ff7-6b74957a7f2e",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Description":"sample string 2","Start":true,"End":true,"ID":"4ef6be7b-b031-4ca5-9ff7-6b74957a7f2e","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">4ef6be7b-b031-4ca5-9ff7-6b74957a7f2e</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>