Skip to main content

Public XFDF Annotations

Tools for public XFDF annotations on a record, and the reference documents attached to a DAM record.

This page covers 4 tools, 1 of them in the default tool list, and 1 destructive.

How to read this page
  • Status — In the default tool list means the tool is one of the ~200 Aprimo advertises to every agent out of the box, so the agent discovers and calls it on its own. Available on request means the tool is registered and fully callable, but sits outside that default list — call it by name, or ask Aprimo to extend the list your tenant is served.
  • Both statuses work identically when called. Status affects discovery, not capability or authorization.
  • Visibility is not authorization. Every tool call executes as the authenticated user, and any tool can return an authorization error if that user lacks rights to the record, task, or file. See the MCP Tool Permission Map.
  • Destructive tools are labelled as such. They delete or irreversibly overwrite data, and will not act unless the call sets both confirmed and confirmedDestructive to true.
  • Activity and Project labels vary by tenant. Where this page says Activity or Project, your tenant's own configured terminology is substituted at runtime.
Why isn't every tool in the default list?

Aprimo's MCP Server exposes far more tools than most MCP clients handle well — many degrade or truncate their tool list well below the full catalogue. Rather than let a client truncate arbitrarily, Aprimo advertises a curated set of roughly 200 tools covering the tasks customers most commonly automate. Everything outside that set remains fully supported and callable by name; it simply isn't offered up front. If your integration leans on a tool that is available on request, talk to your Aprimo Customer Success Manager about extending the advertised list for your tenant.

Tools at a Glance

ToolStatusWhat it does
create_public_xfdf_annotationOn requestCreates an XFDF annotation on a document version, in Aprimo Marketing Operations (the public assets/annotations-data resource).
delete_public_xfdf_annotationOn requestDestructive. Permanently deletes an XFDF annotation from a document version, in Aprimo Marketing Operations (the public assets/annotations-data resource).
get_dam_record_reference_documentsDefaultReturns the DAM reference documents linked to a DAM record, in Aprimo Marketing Operations.
get_public_xfdf_annotationsOn requestReturns the XFDF annotations for a document version, paged, in Aprimo Marketing Operations (the public assets/annotations-data resource).

create_public_xfdf_annotation

Available on request

Creates an XFDF annotation on a document version, in Aprimo Marketing Operations (the public assets/annotations-data resource). Requires confirmed=true after showing the user the exact payload. Returns the created annotation.

Parameters:

ParameterTypeRequiredDescription
idstringYesThe asset (document)'s integer id.
versionIdstringYesThe document version's integer id.
bodystringYesJSON object with the XFDF annotation payload. Must include a "type" property identifying the annotation kind.
confirmedbooleanNoMust be true to proceed. Omit (or false) to get a confirmation gate error, then call again with confirmed=true after the user has explicitly approved the payload.

Returns:

FieldTypeDescription
annotationIdinteger
annotationUuidstring (optional)
associatedNumberinteger (optional)
createdDatestring (optional)
modifiedDatestring (optional)
replyCountinteger (optional)
typestring (optional)
pageinteger (optional)
authorIdinteger (optional)
commentstring (optional)Flattened from content.comment.
quotedTextstring (optional)Flattened from content.quotedText.
fixedLabelstring (optional)Flattened from content.fixedLabel (a stamp/fixed-annotation's label, when present) -- newly surfaced now that ContentModel is a confirmed, hardened schema.
colorstring (optional)Flattened from style.color.
opacitynumber (optional)Flattened from style.opacity.
widthinteger (optional)Flattened from style.width.
referenceDocumentUuidstring (optional)Flattened from referenceLink.documentUuid.

delete_public_xfdf_annotation

Available on request · Destructive

Permanently deletes an XFDF annotation from a document version, in Aprimo Marketing Operations (the public assets/annotations-data resource). This cannot be undone. Requires both confirmed=true and confirmedDestructive=true, after explicitly confirming the exact annotation with the user.

Parameters:

ParameterTypeRequiredDescription
idstringYesThe asset (document)'s integer id.
versionIdstringYesThe document version's integer id.
annotationIdstringYesThe annotation's integer id to delete.
confirmedbooleanNoMust be true to proceed. Omit (or false) to get a confirmation gate error.
confirmedDestructivebooleanNoMust also be true (in addition to confirmed) — deleting an annotation is permanent and cannot be undone. Set only after stating the exact annotation to the user and getting explicit go-ahead.

Returns:

FieldTypeDescription
idinteger
versionIdinteger
annotationIdinteger
deletedboolean
Destructive operation

This tool deletes or irreversibly overwrites data in the live tenant; the change cannot be rolled back through the API. It will not act unless the call sets both confirmed and confirmedDestructive to true.


get_dam_record_reference_documents

In the default tool list

Returns the DAM reference documents linked to a DAM record, in Aprimo Marketing Operations.

Response format: the response carries pre-rendered markdown blocks intended to be displayed verbatim.

Parameters:

ParameterTypeRequiredDescription
recordIdstringYesThe DAM record's GUID (a string, not an integer id).

Returns:

FieldTypeDescription
itemsarray of RefDocsModel
items[].fileVersionIdstring (optional)
items[].refDocsarray of RefDocsProjection
items[].refDocs[].refDocRecordIdstring (optional)
items[].refDocs[].refDocFileVersionIdstring (optional)
items[].refDocs[].refDocAssetTitlestring (optional)

get_public_xfdf_annotations

Available on request

Returns the XFDF annotations for a document version, paged, in Aprimo Marketing Operations (the public assets/annotations-data resource).

Response format: the response carries pre-rendered markdown blocks intended to be displayed verbatim.

Parameters:

ParameterTypeRequiredDescription
idstringYesThe asset (document)'s integer id.
versionIdstringYesThe document version's integer id.
offsetintegerNoThe zero-based index of the first annotation to return (default 0).
limitintegerNoThe maximum number of annotations to return (default 50).

Returns:

FieldTypeDescription
totalCountinteger
offsetinteger
limitinteger
itemsarray of PublicXfdfAnnotationProjection
items[].annotationIdinteger
items[].annotationUuidstring (optional)
items[].associatedNumberinteger (optional)
items[].createdDatestring (optional)
items[].modifiedDatestring (optional)
items[].replyCountinteger (optional)
items[].typestring (optional)
items[].pageinteger (optional)
items[].authorIdinteger (optional)
items[].commentstring (optional)Flattened from content.comment.
items[].quotedTextstring (optional)Flattened from content.quotedText.
items[].fixedLabelstring (optional)Flattened from content.fixedLabel (a stamp/fixed-annotation's label, when present) -- newly surfaced now that ContentModel is a confirmed, hardened schema.
items[].colorstring (optional)Flattened from style.color.
items[].opacitynumber (optional)Flattened from style.opacity.
items[].widthinteger (optional)Flattened from style.width.
items[].referenceDocumentUuidstring (optional)Flattened from referenceLink.documentUuid.