Skip to main content
POST
/
document
/
get-interconnection
List interconnected document IDs
curl --request POST \
  --url https://app.myhero.so/document/get-interconnection \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "documentIds": [
    "<string>"
  ]
}
'
{
  "data": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Traverses the document graph starting from the provided documentIds and returns all reachable related document IDs. Useful for determining the full set of documents that would be affected by a transfer or copy operation.

Authorizations

Authorization
string
header
required

HERO personal access token

Body

application/json
documentIds
string[]
required
Minimum array length: 1
Minimum string length: 1

Response

200 response

data
string[]
required