/
Actions API documentation
Actions API documentation
This document contains information about structure of requests and responses used by actions API as of NAE version 5.7.0.
- 1 Requests
- 1.1 Petri net requests
- 1.2 Case requests
- 1.3 Task requests
- 1.4 Data requests
- 2 Responses
- 2.1 Response attributes
- 2.1.1 EventOutcome
- 2.1.2 PetriNetReference
- 2.1.3 NaeDate
- 2.1.4 Author
- 2.1.5 ImmediateData
- 2.1.6 Case
- 2.1.7 PetriNetObjectId
- 2.1.8 Permission
- 2.1.9 Permissions
- 2.1.10 UserPermissions
- 2.1.11 Task
- 2.1.12 BasicLayout
- 2.1.13 TaskLayout
- 2.1.14 DataGroupLayoutType
- 2.1.15 FieldAllignment
- 2.1.16 DataGroupHideEmptyRows
- 2.1.17 DataGroupCompact
- 2.1.18 IUser
- 2.1.19 UserResourceSmall
- 2.1.20 UsersRef
- 2.1.21 AssignedUserPolicy
- 2.1.22 ChangedFieldContainer
- 2.1.23 ChangedFields
- 2.1.24 Change
- 2.1.25 Behavior
- 2.1.26 DataGroup
- 2.1.27 DataGroupLayout
- 2.1.28 DataGroupAlignment
- 2.1.29 DataField
- 2.1.30 Validation
- 2.1.31 Component
- 2.1.32 GridLayout
- 2.1.33 Layout
- 2.1.34 TemplateAppearance
- 2.1.35 MaterialAppearance
- 2.1.36 FieldAlignment
- 2.1.37 Icon
- 2.1.38 Properties
- 2.2 Base response types
- 2.2.1 MessageResource
- 2.2.2 EventOutcomeMessageResource
- 2.3 Petri net responses
- 2.3.1 PetriNetEventOutcome
- 2.3.2 ImportPetriNetEventOutcome
- 2.4 Case responses
- 2.4.1 CaseEventOutcome
- 2.4.2 CreateCaseEventOutcome
- 2.4.3 DeleteCaseEventOutcome
- 2.5 Task responses
- 2.5.1 TaskEventOutcome
- 2.5.2 AssignTaskEventOutcome
- 2.5.3 CancelTaskEventOutcome
- 2.5.4 FinishTaskEventOutcome
- 2.5.5 DelegateTaskEventOutcome
- 2.6 Data responses
- 2.6.1 GetDataGroupsEventOutcome
- 2.6.2 SetDataEventOutcome
- 2.1 Response attributes
Requests
todo
Petri net requests
Case requests
Task requests
Data requests
Responses
Response attributes
EventOutcome
{
message?: string,
outcomes?: EventOutcome[]
}
PetriNetReference
{
stringId: string,
title: string,
identifier: string,
version: string,
initials: string,
defaultCaseName: string,
createdDate: NaeDate,
author: Author,
immediateData: Array<ImmediateData>
}
NaeDate
[year month day hour minute second timestamp]
Author
{
email: string,
fullName: string
}
ImmediateData
{
stringId: string,
title: string,
type: string
}
Case
{
lastModified: NaeDate,
visualId: string,
petriNetObjectId: PetriNetObjectId,
processIdentifier: string,
title: string,
color: string,
icon: string,
creationDate: NaeDate,
immediateData: Array<ImmediateData>,
author: Author,
viewRoles: Array<string>,
permissions: Permissions,
negativeViewRoles: ?,
users: UsersPermissions,
userRefs: ?,
negativeViewUsers: ?,
stringId: string,
petriNetId: string,
viewUserRefs: ?
}
PetriNetObjectId
{
timestamp: number,
machineIdentifier: number,
processIdentifier: number,
counter: number,
timeSecond: number,
time: number,
date: number,
}
Permission
{
create?: boolean,
delete?: boolean,
view?: boolean
}
Permissions
{
[k: string]: Permission
}
UserPermissions
{
[k: number]: Permission
}
Task
{
caseId: string,
transitionId: string,
layout: TaskLayout,
title: string,
caseColor: string,
caseTitle: string,
priority: number,
user: UserResourceSmall,
roles: object,
users: UsersRef,
startDate: NaeDate,
finishDate: NaeDate,
finishedBy: number,
transactionId: string,
requiredFilled: boolean,
immediateData: Array<ImmediateData>,
icon: string,
assignPolicy: string,
dataFocusPolicy: string,
finishPolicy: string,
finishTitle: string,
cancelTitle: string,
delegateTitle: string,
assignTitle: string,
assignedUserPolicy: AssignedUserPolicy,
}
BasicLayout
{
rows: number,
cols: number
}
TaskLayout
extends BasicLayout
{
offset: number,
type?: DataGroupLayoutType,
fieldAlignment?: FieldAlignment,
hideEmptyRows?: DataGroupHideEmptyRows,
compactDirection?: DataGroupCompact,
[k: string]: any
}
DataGroupLayoutType
enum
{
GRID = 'grid',
FLOW = 'flow',
LEGACY = 'legacy'
}
FieldAllignment
enum
{
TOP = 'top',
CENTER = 'center',
BOTTOM = 'bottom'
}
DataGroupHideEmptyRows
enum
{
ALL = 'all',
COMPACTED = 'compacted',
NONE = 'none',
}
DataGroupCompact
enum
{
NONE = 'none',
UP = 'up',
}
IUser
{
id: string,
email: string,
name: string,
surname: string
}
UserResourceSmall
extends IUser
{
fullName: string,
avatar?: string,
}
UsersRef
{
[k: number]: {
[k: string]: boolean
}
}
AssignedUserPolicy
{
cancel?: boolean,
reassign?: boolean
}
ChangedFieldContainer
{
changedFields: ChangedFields
}
ChangedFields
{
[key: string]: Change | any
}
Change
{
value?: string | number | boolean | any,
type?: string,
behavior?: {
[key: string]: Behavior
};
[key: string]: any;
}
Behavior
{
required?: boolean,
optional?: boolean,
visible?: boolean,
editable?: boolean,
hidden?: boolean,
forbidden?: boolean,
}
DataGroup
{
fields: Array<DataField<any>>,
title: string,
alignment: DataGroupAlignment,
stretch: boolean,
layout?: DataGroupLayout,
parentTaskId?: string,
parentCaseId?: string,
}
DataGroupLayout
{
type: DataGroupLayoutType,
hideEmptyRows?: DataGroupHideEmptyRows,
compactDirection?: DataGroupCompact,
[k: string]: any
}
DataGroupAlignment
enum
{
START = 'start',
CENTER = 'center',
END = 'end'
}
DataField
{
stringId: string,
type: string,
name: string,
description: string,
placeholder: string,
behavior: Behavior,
layout: Layout,
value: any?,
order: number,
view: string,
length: number,
component: Component,
validations: Array<Validation>,
parentTaskId: string,
parentCaseId: string,
}
Validation
{
validationRule: string,
validationMessage: string
}
Component
{
name: string,
properties?: Properties,
optionIcons?: Array<Icon>
}
GridLayout
extends BasicLayout
{
x: number,
y: number
}
Layout
extends GridLayout
{
template: TemplateAppearance,
appearance: MaterialAppearance,
offset: number,
alignment?: FieldAlignment
}
TemplateAppearance
enum
{
MATERIAL = 'material',
NETGRIF = 'netgrif',
}
MaterialAppearance
{
LEGACY = 'legacy',
STANDARD = 'standard',
FILL = 'fill',
OUTLINE = 'outline'
}
FieldAlignment
{
TOP = 'top',
CENTER = 'center',
BOTTOM = 'bottom'
}
Icon
{
key: string;
type: string;
value: string;
}
Properties
{
[key: string]: any
}
Base response types
MessageResource
{
error?: string,
links?: Link,
success?: string;
}
EventOutcomeMessageResource
extends MessageResource
{
outcome?: EventOutcome
}
Petri net responses
PetriNetEventOutcome
extends EventOutcome
{
net: PetriNetReference
}
ImportPetriNetEventOutcome
extends PetriNetEventOutcome
{}
Case responses
CaseEventOutcome
extends PetriNetEventOutcome
{
aCase: Case;
}
CreateCaseEventOutcome
extends CaseEventOutcome
{}
DeleteCaseEventOutcome
extends CaseEventOutcome
{}
Task responses
TaskEventOutcome
extends CaseEventOutcome
{
task?: Task;
}
AssignTaskEventOutcome
extends TaskEventOutcome
{}
CancelTaskEventOutcome
extends TaskEventOutcome
{}
FinishTaskEventOutcome
extends TaskEventOutcome
{}
DelegateTaskEventOutcome
extends TaskEventOutcome
{}
Data responses
GetDataGroupsEventOutcome
extends TaskEventOutcome
{
data: DataGroup[];
}
SetDataEventOutcome
extends TaskEventOutcome
{
changedFields: ChangedFieldContainer;
}
, multiple selections available,
Related content
Developer guide
Developer guide
More like this
User guide
User guide
More like this
How-to articles
How-to articles
Read with this
The Complete developer start-up guide
The Complete developer start-up guide
Read with this
Roadmap
Roadmap
Read with this
NAE 5.6.3 migration guide
NAE 5.6.3 migration guide
Read with this