Skip to main content
Version: ADONIS 14-15/ADOIT 15-16/ADOGRC 11-12

Inspect a process model's data

This article shows how to use the ADOXX API to retrieve details for a specific model.

The Java snippet below will fetch the details for a model whose ID we retrieved (e.g. via a search call) and for which we now want to retrieve details about the contained objects and relations. We also want to fetch the name and description of the model.

note

The Java snippet below uses Basic Authentication.

Replace the values in angle brackets with values that fit your setup, e.g. instead of <HOST> use the host at which you access your ADOxx instance.

Click to view the code!

Source Code

Loading code...

The result should look similar to the following:

Status Code: 200
Result:
{
"locale": "en",
"item": {
"rest_links": [ ... ],
"id": " ... ",
"name": " ... ",
"type": " ... ",
"artefactType": " ... ",
"metaName": " ... ",
"link": { ... },
"icon": { ... },
"attributes": [ ... ],
"relations": [ ... ],
"objects": [ ... ]
}
}