GET api/workflowdefinitions/getxsdfile/{workflowDefinitionId}
Retrieves the xsd file for a workflow definition.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| workflowDefinitionId |
The id of the workflow definition to retrieve the xsd for. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
FileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| Extension | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Content": "sample string 1",
"Extension": "sample string 2"
}
application/xml, text/xml
Sample:
<FileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Template.Models"> <Content>sample string 1</Content> <Extension>sample string 2</Extension> </FileDto>