Skip to main content

Get help for ARIS Process Mining functions and services

DataIngestionCycleState

Used only as output, standalone or as part of a data ingestion cycle (DataIngestionCycle) (see above). Possible states are: ACCEPTING_DATA, INGESTING_DATA, COMPLETED_SUCCESSFULLY, CANCELED, and FAILED.

In case of 'FAILED', it will return a cause. Causes consist of a code and a message to indicate what happened exactly. The code is four digits long and always prefixed with "IER" for "Ingestion - Error".

{
"value": "FAILED",
"cause": {
"code": "IER1000",
"message": "An unexpected error occurred"
}
}

TableData

Used only as input for data upload. Values must conform to the schema of the targeted source table. Null is a valid value.

[
[1,"A","2021/05/10 12:13:14",1.1,"Distribution Center Team","Distribution"],
[2,"B","2021/06/11 15:16:17",2.2,"Distribution Center Team","Distribution"],
[3,"C","2021/07/12 18:19:20",3.3,null,"Sales"],
[4,"D","2021/08/13 21:22:23",4.4,"Dealer Sales","Sales"]
]

StringColumn

Used only as part of a source table definition (SourceTableDefinition) (see above).

LongColumn

Used only as part of a source table definition (SourceTableDefinition) (see above).

DoubleColumn

Used only as part of a source table definition (SourceTableDefinition) (see above).

FormattedTimestampColumn

Used only as part of a source table definition (SourceTableDefinition) (see above).

DefaultResult

Used only as standalone output, either when the operation performed does not have a dedicated result object itself (deletion of a source table, upload of source data) or when an error occurs on the server (any operation). The successful property of this object is either set to true or to false accordingly.

In case of false, the object will also contain a cause with a message.

{
"successful": false,
"cause": {
"message": "An unexpected error occurred"
}
}

ApiVersion

Used only as output after an API version check.

{
"apiVersion": "3.2"
}