Provided an annotation filter and an annotated resource type (file/3D), returns ids of annotated resources having annotations matching the filter. A typical use case is looking up files with annotations linking to a specific asset. Only ids of annotated resources that the client has access to will be returned.
In beta. Available only when the cdf-version
header with the beta
suffix value is provided.
A request to look up annotated resource ids based on having annotations matching a filter.
Successful reverse lookup of annotated resource ids
The response for a failed request.
{- "filter": {
- "annotatedResourceType": "file",
- "status": "approved",
- "data": {
- "label": "cat",
- "fileRef": {
- "externalId": "abc"
}
}
}, - "limit": 100,
- "cursor": "MzE1NjAwMDcxNzQ0ODI5"
}
{- "items": [
- {
- "id": 123,
- "externalId": "abc-1066"
}
], - "nextCursor": null,
- "annotatedResourceType": "file"
}