Get Incoming Publication References for a Document
Required scope:
public-api:read
ACCESS_TOKEN=ey1234
curl -k -X GET "https://edit.livingdocs.io/proxy/api/api/v1/documents/:documentId/incomingDocumentReferences" \
-H "Accept: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN"
Endpoint
GET api/v1/documents/:documentId/incomingDocumentReferences
Parameters
Name | Type | Required | Notes |
---|
:documentId | integer | x | |
?limit | integer | | A limit for how much published documents to retrieve. Defaults to 100. Max. 100. |
?offset | integer | | An offset into the query. Useful when getting more than 100 results (pagination). |
Response
[
{
"id": 4,
"references": [
{
"id": "1",
"type": "document",
"location": "include-directive",
"componentId": "doc-1euiflvoq0",
"serviceName": "editable-teaser",
"propertyName": "article",
"componentName": "teaser-include",
"directiveName": "teaser"
}
]
},
{
"id": 2,
"references": [
{
"id": "1",
"type": "document",
"location": "include-directive",
"componentId": "doc-1eu6i7l880",
"serviceName": "editable-teaser",
"propertyName": "article",
"componentName": "teaser-include",
"directiveName": "teaser"
}
]
}
]
Required scope:
public-api:read
ACCESS_TOKEN=ey1234
curl -k -X GET "https://edit.livingdocs.io/proxy/api/api/v1/documents/:documentId/incomingMediaReferences" \
-H "Accept: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN"
Endpoint
GET api/v1/documents/:documentId/incomingMediaReferences
Parameters
Name | Type | Required | Notes |
---|
:documentId | integer | x | |
?limit | integer | | A limit for how much published documents to retrieve. Defaults to 100. Max. 100. |
?offset | integer | | An offset into the query. Useful when getting more than 100 results (pagination). |
Response
[
{
"id": "98sXCahM5PEk",
"references": [
{
"id": "3",
"type": "document",
"location": "metadata",
"propertyName": "documentLink"
}
]
}
]