GET WorkflowConfigurations/{id}
Gets the specified identifier.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The workflow identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
An if it exist, otherway NotFound
WorkflowsConfigurationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| Entity | integer |
None. |
|
| EntityDescription | string |
None. |
|
| Active | boolean |
None. |
|
| Level0MaxValue | decimal number |
None. |
|
| Level0RequiredApprovers | integer |
None. |
|
| Level1MaxValue | decimal number |
None. |
|
| Level1RequiredApprovers | integer |
None. |
|
| Level2RequiredApprovers | integer |
None. |
|
| UsersLevel | Collection of WorkflowsConfigurationsUsersLevelDto |
None. |
|
| Scalable | boolean |
None. |
|
| DisplayCustom0 | boolean |
None. |
|
| Custom0 | boolean |
None. |
|
| Custom0Label | string |
None. |
|
| Custom0HelpMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "afca3332-2b41-4f08-accb-76a7dcbcbce8",
"IdNetwork": "5decf0c1-995f-440c-85bc-798adcc1772b",
"Entity": 3,
"EntityDescription": "sample string 4",
"Active": true,
"Level0MaxValue": 1.0,
"Level0RequiredApprovers": 6,
"Level1MaxValue": 1.0,
"Level1RequiredApprovers": 7,
"Level2RequiredApprovers": 8,
"UsersLevel": [
{
"IdWorkflowConfiguration": "67aba79a-05e3-4d75-809b-5836be7cf3bb",
"Level": 2,
"Required": true,
"IdUserAtionet": "1b13c711-fc1a-49e5-8fce-f0631768c108",
"UserName": "sample string 5",
"UserEmail": "sample string 6"
},
{
"IdWorkflowConfiguration": "67aba79a-05e3-4d75-809b-5836be7cf3bb",
"Level": 2,
"Required": true,
"IdUserAtionet": "1b13c711-fc1a-49e5-8fce-f0631768c108",
"UserName": "sample string 5",
"UserEmail": "sample string 6"
}
],
"Scalable": true,
"DisplayCustom0": true,
"Custom0": true,
"Custom0Label": "sample string 12",
"Custom0HelpMessage": "sample string 13"
}
application/xml, text/xml
Sample:
<WorkflowsConfigurationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model.Workflow">
<Active>true</Active>
<Custom0>true</Custom0>
<Custom0HelpMessage>sample string 13</Custom0HelpMessage>
<Custom0Label>sample string 12</Custom0Label>
<DisplayCustom0>true</DisplayCustom0>
<Entity>3</Entity>
<EntityDescription>sample string 4</EntityDescription>
<Id>afca3332-2b41-4f08-accb-76a7dcbcbce8</Id>
<IdNetwork>5decf0c1-995f-440c-85bc-798adcc1772b</IdNetwork>
<Level0MaxValue>1</Level0MaxValue>
<Level0RequiredApprovers>6</Level0RequiredApprovers>
<Level1MaxValue>1</Level1MaxValue>
<Level1RequiredApprovers>7</Level1RequiredApprovers>
<Level2RequiredApprovers>8</Level2RequiredApprovers>
<Scalable>true</Scalable>
<UsersLevel>
<WorkflowsConfigurationsUsersLevelDto>
<IdUserAtionet>1b13c711-fc1a-49e5-8fce-f0631768c108</IdUserAtionet>
<IdWorkflowConfiguration>67aba79a-05e3-4d75-809b-5836be7cf3bb</IdWorkflowConfiguration>
<Level>2</Level>
<Required>true</Required>
<UserEmail>sample string 6</UserEmail>
<UserName>sample string 5</UserName>
</WorkflowsConfigurationsUsersLevelDto>
<WorkflowsConfigurationsUsersLevelDto>
<IdUserAtionet>1b13c711-fc1a-49e5-8fce-f0631768c108</IdUserAtionet>
<IdWorkflowConfiguration>67aba79a-05e3-4d75-809b-5836be7cf3bb</IdWorkflowConfiguration>
<Level>2</Level>
<Required>true</Required>
<UserEmail>sample string 6</UserEmail>
<UserName>sample string 5</UserName>
</WorkflowsConfigurationsUsersLevelDto>
</UsersLevel>
</WorkflowsConfigurationDto>