Skip to main content
Version: ADONIS 16-17/ADOIT 17/ADOGRC 13

Inspect an artifact's data

This article shows how to use the ADOXX API to retrieve data for a specific object.

The Java snippet below will fetch the details for an ArchiMate artifact object whose ID we retrieved (e.g. via a search call) and for which we now want to retrieve details about the object itself and the objects that are served by this artifact.

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": [
{
"name": " ... ",
"metaName": " ... ",
"targets": [ ... ]
},
...
]
}
}