PUT WorkflowConfigurations

Puts the specified workflow configuration dto.

Request Information

URI Parameters

None.

Body Parameters

The workflow configuration dto.

WorkflowsConfigurationDto
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "Id": "d0491b41-a65c-4a29-8caf-20eb85cad7fd",
  "IdNetwork": "00b2a29d-147e-454a-a9e7-dc592b01ecd2",
  "Entity": 3,
  "EntityDescription": "sample string 4",
  "Active": true,
  "Level0MaxValue": 1.0,
  "Level0RequiredApprovers": 6,
  "Level1MaxValue": 1.0,
  "Level1RequiredApprovers": 7,
  "Level2RequiredApprovers": 8,
  "UsersLevel": [
    {
      "IdWorkflowConfiguration": "5eb820b0-070e-4d0c-9600-1fa2b421c6c6",
      "Level": 2,
      "Required": true,
      "IdUserAtionet": "f7f19fc0-34a2-4318-b79f-629c82f938c0",
      "UserName": "sample string 5",
      "UserEmail": "sample string 6"
    },
    {
      "IdWorkflowConfiguration": "5eb820b0-070e-4d0c-9600-1fa2b421c6c6",
      "Level": 2,
      "Required": true,
      "IdUserAtionet": "f7f19fc0-34a2-4318-b79f-629c82f938c0",
      "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>d0491b41-a65c-4a29-8caf-20eb85cad7fd</Id>
  <IdNetwork>00b2a29d-147e-454a-a9e7-dc592b01ecd2</IdNetwork>
  <Level0MaxValue>1</Level0MaxValue>
  <Level0RequiredApprovers>6</Level0RequiredApprovers>
  <Level1MaxValue>1</Level1MaxValue>
  <Level1RequiredApprovers>7</Level1RequiredApprovers>
  <Level2RequiredApprovers>8</Level2RequiredApprovers>
  <Scalable>true</Scalable>
  <UsersLevel>
    <WorkflowsConfigurationsUsersLevelDto>
      <IdUserAtionet>f7f19fc0-34a2-4318-b79f-629c82f938c0</IdUserAtionet>
      <IdWorkflowConfiguration>5eb820b0-070e-4d0c-9600-1fa2b421c6c6</IdWorkflowConfiguration>
      <Level>2</Level>
      <Required>true</Required>
      <UserEmail>sample string 6</UserEmail>
      <UserName>sample string 5</UserName>
    </WorkflowsConfigurationsUsersLevelDto>
    <WorkflowsConfigurationsUsersLevelDto>
      <IdUserAtionet>f7f19fc0-34a2-4318-b79f-629c82f938c0</IdUserAtionet>
      <IdWorkflowConfiguration>5eb820b0-070e-4d0c-9600-1fa2b421c6c6</IdWorkflowConfiguration>
      <Level>2</Level>
      <Required>true</Required>
      <UserEmail>sample string 6</UserEmail>
      <UserName>sample string 5</UserName>
    </WorkflowsConfigurationsUsersLevelDto>
  </UsersLevel>
</WorkflowsConfigurationDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.