Skip to main content

Subscriptions

Tools for subscriptions to objects, letting users follow changes to them.

This page covers 5 tools, all of them available on request rather than in the default tool list.

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_subscriptionOn requestCreates a new Aprimo subscription: subscribes a user to a record or collection for a given change type.
delete_subscriptions_for_objectOn requestPermanently deletes the calling user's own subscription(s) (Follow and/or Expiry) on one Aprimo record or collection.
get_subscription_by_keyOn requestGets one Aprimo subscription by its composite key: the subscribed object id, the subscribed user id, and the subscription type (Follow or Expiry).
get_subscription_for_objectOn requestGets the subscription(s) (Follow and/or Expiry) on one Aprimo record or collection.
list_subscriptionsOn requestLists every user subscribed to an Aprimo record or collection for a given subscription type.

create_subscription

Available on request

Creates a new Aprimo subscription: subscribes a user to a record or collection for a given change type. This modifies data. Always confirm the exact user, object, and subscription type with the user before calling this tool.

Parameters:

ParameterTypeRequiredDescription
objectIdstringYesThe record or collection id (32-char hex) to subscribe to.
userIdstringYesThe id (GUID) of the user the subscription belongs to.
subscriptionTypestringYesThe subscription type. One of: Follow, Expiry.
subscriptionObjectTypestringYesThe type of the object being subscribed to. One of: Record, Collection.

Returns:

FieldTypeDescription
subscriptionIdstring
objectIdstring
userIdstring
subscriptionTypestring
subscriptionObjectTypestring

delete_subscriptions_for_object

Available on request

Permanently deletes the calling user's own subscription(s) (Follow and/or Expiry) on one Aprimo record or collection. This is self-scoped -- it only removes the caller's own subscription and does not affect other users' subscriptions to the same object. Always confirm the exact object with the user before calling this tool.

Parameters:

ParameterTypeRequiredDescription
objectIdstringYesThe record or collection id (32-char hex) whose subscription(s) for the calling user will be deleted.
confirmedbooleanNoMust be true to proceed. Set to false (or omit) to get a confirmation gate error, then call again with confirmed=true after the user has explicitly confirmed the exact object.

Returns:

FieldTypeDescription
objectIdstring
deletedboolean

get_subscription_by_key

Available on request

Gets one Aprimo subscription by its composite key: the subscribed object id, the subscribed user id, and the subscription type (Follow or Expiry). Use when you already know all three and want that specific subscription's detail (rather than every user subscribed to an object — use list_subscriptions for that).

Parameters:

ParameterTypeRequiredDescription
objectIdstringYesThe record or collection id (32-char hex) the subscription applies to.
userIdstringYesThe subscribed user's id (GUID).
subscriptionTypestringYesThe subscription type. One of: Follow, Expiry.

Returns:

FieldTypeDescription
idstring
objectIdstring
userIdstring
subscriptionTypestring (optional)
subscriptionObjectTypestring (optional)
createdOnstring (optional)
modifiedOnstring (optional)

get_subscription_for_object

Available on request

Gets the subscription(s) (Follow and/or Expiry) on one Aprimo record or collection. Warning: confirmed live against a real tenant that this endpoint returns "not found" even when the calling user genuinely has an active Follow and/or Expiry subscription on the object -- it does not reliably reflect subscription state. Prefer get_subscription_by_key (objectId + userId + a specific subscriptionType) or list_subscriptions (objectId + subscriptionType + objectType, then filter for the caller's own userId) instead of trusting this tool's "no subscription" result.

Parameters:

ParameterTypeRequiredDescription
objectIdstringYesThe record or collection id (32-char hex) to check the calling user's subscription(s) on.

Returns:

FieldTypeDescription
countinteger
itemsarray of SubscriptionPayload
items[].idstring
items[].objectIdstring
items[].userIdstring
items[].subscriptionTypestring (optional)
items[].subscriptionObjectTypestring (optional)
items[].createdOnstring (optional)
items[].modifiedOnstring (optional)

list_subscriptions

Available on request

Lists every user subscribed to an Aprimo record or collection for a given subscription type. Requires the object id, its subscription type (Follow or Expiry), and its object type (Record or Collection). Use to see who is following/watching an object.

Parameters:

ParameterTypeRequiredDescription
objectIdstringYesThe record or collection id (32-char hex) to list subscribers for.
subscriptionTypestringYesThe subscription type. One of: Follow, Expiry.
objectTypestringYesThe type of the subscribed object. One of: Record, Collection.

Returns:

FieldTypeDescription
countinteger
itemsarray of SubscriptionPayload
items[].idstring
items[].objectIdstring
items[].userIdstring
items[].subscriptionTypestring (optional)
items[].subscriptionObjectTypestring (optional)
items[].createdOnstring (optional)
items[].modifiedOnstring (optional)