GET
/
links
/
directed
Get outgoing links
curl --request GET \
  --url https://{FUSION HOST}/api/links/directed
[
  {
    "subject": {
      "type": "APPKIT_APP",
      "id": "<string>",
      "uri": "<string>",
      "canonicalName": "<string>"
    },
    "object": {
      "type": "APPKIT_APP",
      "id": "<string>",
      "uri": "<string>",
      "canonicalName": "<string>"
    },
    "linkType": "DependsOn",
    "originator": "<string>"
  }
]

Query Parameters

resource
string

Resource to get outgoing links for.

exclusive
boolean
default:false

Exclusive means objects used by the given resource are not used by other resources. Default value is false.

bypassCache
boolean
default:false

Bypass the cache and retrieve directly from storage.

skipSharedGroup
boolean
default:false

Exclude shared group from returned links.

Response

200 - application/json

successful operation

The response is of type object[].