Skip to main content

Programs, Proposals & Suppliers

Tools for the planning tier above activities — programs and their proposals, activity proposals, and the suppliers engaged to deliver the work.

This page covers 17 tools, 6 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_activity_proposalDefaultCreates a new activity proposal in Aprimo Marketing Operations.
create_supplierOn requestCreates a new supplier in Aprimo Marketing Operations.
delete_supplierOn requestDestructive. Permanently deletes a supplier by its integer ID in Aprimo Marketing Operations.
get_activity_proposalDefaultReturns a single activity proposal by its integer ID in Aprimo Marketing Operations.
get_programOn requestReturns a single program by its integer ID in Aprimo Marketing Operations.
get_program_proposalOn requestReturns a single program proposal by its integer ID in Aprimo Marketing Operations.
get_programs_for_activityDefaultReturns the programs associated with an activity, by the activity's integer ID, in Aprimo Marketing Operations, paged.
get_supplierOn requestReturns a single supplier by its integer ID in Aprimo Marketing Operations.
list_activity_proposal_templatesDefaultLists activity proposal templates in Aprimo Marketing Operations, paged.
list_programsOn requestLists programs in Aprimo Marketing Operations, paged and unfiltered.
list_suppliersOn requestLists suppliers in Aprimo Marketing Operations, paged and unfiltered.
search_activity_proposalsDefaultSearches activity proposals in Aprimo Marketing Operations by title, paged.
search_program_proposalsOn requestSearches program proposals in Aprimo Marketing Operations by title, paged.
search_suppliersOn requestSearches suppliers in Aprimo Marketing Operations by name, paged.
update_activity_proposalDefaultUpdates an existing activity proposal by its integer ID in Aprimo Marketing Operations.
update_programOn requestUpdates an existing program by its integer ID in Aprimo Marketing Operations.
update_supplierOn requestUpdates an existing supplier by its integer ID in Aprimo Marketing Operations.

create_activity_proposal

In the default tool list

Creates a new activity proposal in Aprimo Marketing Operations. Requires confirmed=true after showing the user the exact payload. Returns the created activity proposal.

Parameters:

ParameterTypeRequiredDescription
bodystringYesJSON object with the new activity proposal's data (PM wire names).
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
proposalIdinteger
titlestring (optional)
descriptionstring (optional)
proposalStateIdinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label.
activityTypeIdinteger (optional)
activityTypeLabelstring (optional)
ownerIdinteger (optional)
ownerNamestring (optional)
administratorIdinteger (optional)
administratorNamestring (optional)
beginDatestring (optional)
endDatestring (optional)
anchorDatestring (optional)
timeZoneIdinteger (optional)
timeZoneLabelstring (optional)
classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
isTemplateboolean (optional)
totalCostnumber (optional)
submitDatestring (optional)The proposal's submission timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
modifiedDatestring (optional)The proposal's last-modified timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
programIdinteger (optional)The program this proposal is associated with, if any. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
rawobject (optional)The complete wire object, verbatim. See the class remarks.

create_supplier

Available on request

Creates a new supplier in Aprimo Marketing Operations. Requires confirmed=true after showing the user the exact payload. Returns the created supplier.

Parameters:

ParameterTypeRequiredDescription
bodystringYesJSON object with the new supplier's data (PM wire names).
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
supplierIdinteger
namestring (optional)
preferredinteger (optional)
activeFlaginteger (optional)
supplierTypeIdinteger (optional)
notificationTypeIdinteger (optional)
supplierNumberstring (optional)
urlstring (optional)
descriptionstring (optional)
addressLine1string (optional)
addressLine2string (optional)
addressLine3string (optional)
citystring (optional)
statestring (optional)
zipstring (optional)
countrystring (optional)
phonestring (optional)
faxNumberstring (optional)
emailstring (optional)
modifiedUserinteger (optional)
modifiedDatestring (optional)
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

delete_supplier

Available on request · Destructive

Permanently deletes a supplier by its integer ID in Aprimo Marketing Operations. This cannot be undone. Requires both confirmed=true and confirmedDestructive=true, after explicitly confirming the exact supplier with the user. Alternatively, identify the supplier by name instead of supplierId.

Parameters:

ParameterTypeRequiredDescription
supplierIdstringNoThe supplier's integer ID to delete. Provide either supplierId or name, not both.
namestringNoThe supplier's name. Provide either supplierId or name, not both.
confirmedbooleanNoMust be true to proceed. Omit (or false) to get a confirmation gate error.
confirmedDestructivebooleanNoMust also be true (in addition to confirmed) — deleting a supplier is permanent and cannot be undone. Set only after stating the exact supplier to the user and getting explicit go-ahead.

Returns:

FieldTypeDescription
idinteger
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_activity_proposal

In the default tool list

Returns a single activity proposal by its integer ID in Aprimo Marketing Operations. Not its forecasts (use get_activity_proposal_forecasts for those). Resolves activity type/timezone labels and owner/administrator names.

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

Parameters:

ParameterTypeRequiredDescription
proposalIdstringYesThe activity proposal's integer ID.

Returns:

FieldTypeDescription
proposalIdinteger
titlestring (optional)
descriptionstring (optional)
proposalStateIdinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label.
activityTypeIdinteger (optional)
activityTypeLabelstring (optional)
ownerIdinteger (optional)
ownerNamestring (optional)
administratorIdinteger (optional)
administratorNamestring (optional)
beginDatestring (optional)
endDatestring (optional)
anchorDatestring (optional)
timeZoneIdinteger (optional)
timeZoneLabelstring (optional)
classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
isTemplateboolean (optional)
totalCostnumber (optional)
submitDatestring (optional)The proposal's submission timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
modifiedDatestring (optional)The proposal's last-modified timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
programIdinteger (optional)The program this proposal is associated with, if any. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
rawobject (optional)The complete wire object, verbatim. See the class remarks.

get_program

Available on request

Returns a single program by its integer ID in Aprimo Marketing Operations. Not its proposal (use get_program_proposal for that).

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

Alternatively, identify the program by name instead of programId. Note: resolving by name scans the full program list, which may be slower than by id for large tenants.

Parameters:

ParameterTypeRequiredDescription
programIdstringNoThe program's integer ID. Provide either programId or name, not both.
namestringNoThe program's name. Provide either programId or name, not both.

Returns:

FieldTypeDescription
programIdinteger
titlestring (optional)PM's real wire field for this is title, not name -- see the class remarks.
ownerIdinteger (optional)
descriptionstring (optional)
startDatestring (optional)
endDatestring (optional)
programTypeIdinteger (optional)
modifiedUserinteger (optional)
modifiedDatestring (optional)
clientIdinteger (optional)
brandIdinteger (optional)
classificationIdinteger (optional)
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

get_program_proposal

Available on request

Returns a single program proposal by its integer ID in Aprimo Marketing Operations. Resolves owner/modified-by user names.

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

Parameters:

ParameterTypeRequiredDescription
proposalIdstringYesThe program proposal's integer ID.

Returns:

FieldTypeDescription
proposalIdinteger
titlestring (optional)
descriptionstring (optional)
classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
proposalStateinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: proposalState.
programTypeIdinteger (optional)Raw id, no existing lookup-list resolver for program types.
ownerIdinteger (optional)
ownerNamestring (optional)Not part of the wire schema -- filled by PmProgramProposalMapper.ResolveAsync.
beginDatestring (optional)
endDatestring (optional)
modifiedDatestring (optional)
modifiedUserinteger (optional)Wire field: modifiedUser.
modifiedByNamestring (optional)Not part of the wire schema -- filled by PmProgramProposalMapper.ResolveAsync.
currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
submitDatestring (optional)
invoiceTotalnumber (optional)
materialTotalnumber (optional)
laborTotalnumber (optional)
tAndETotalnumber (optional)
totalCostnumber (optional)
approvalTypeinteger (optional)PM's ApprovalType enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: approvalType.
objectivestring (optional)
proposalTypeinteger (optional)PM's ProposalType enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: proposalType.
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

get_programs_for_activity

In the default tool list

Returns the programs associated with an activity, by the activity's integer ID, in Aprimo Marketing Operations, paged.

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

Parameters:

ParameterTypeRequiredDescription
activityIdstringYesThe activity's integer ID.
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of ProgramProjectionThe items returned in this response.
items[].programIdinteger
items[].titlestring (optional)PM's real wire field for this is title, not name -- see the class remarks.
items[].ownerIdinteger (optional)
items[].descriptionstring (optional)
items[].startDatestring (optional)
items[].endDatestring (optional)
items[].programTypeIdinteger (optional)
items[].modifiedUserinteger (optional)
items[].modifiedDatestring (optional)
items[].clientIdinteger (optional)
items[].brandIdinteger (optional)
items[].classificationIdinteger (optional)
items[].rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

get_supplier

Available on request

Returns a single supplier by its integer ID in Aprimo Marketing Operations.

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

Alternatively, identify the supplier by name instead of supplierId.

Parameters:

ParameterTypeRequiredDescription
supplierIdstringNoThe supplier's integer ID. Provide either supplierId or name, not both.
namestringNoThe supplier's name. Provide either supplierId or name, not both.

Returns:

FieldTypeDescription
supplierIdinteger
namestring (optional)
preferredinteger (optional)
activeFlaginteger (optional)
supplierTypeIdinteger (optional)
notificationTypeIdinteger (optional)
supplierNumberstring (optional)
urlstring (optional)
descriptionstring (optional)
addressLine1string (optional)
addressLine2string (optional)
addressLine3string (optional)
citystring (optional)
statestring (optional)
zipstring (optional)
countrystring (optional)
phonestring (optional)
faxNumberstring (optional)
emailstring (optional)
modifiedUserinteger (optional)
modifiedDatestring (optional)
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

list_activity_proposal_templates

In the default tool list

Lists activity proposal templates in Aprimo Marketing Operations, paged.

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

Parameters:

ParameterTypeRequiredDescription
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of ActivityProposalProjectionThe items returned in this response.
items[].proposalIdinteger
items[].titlestring (optional)
items[].descriptionstring (optional)
items[].proposalStateIdinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label.
items[].activityTypeIdinteger (optional)
items[].activityTypeLabelstring (optional)
items[].ownerIdinteger (optional)
items[].ownerNamestring (optional)
items[].administratorIdinteger (optional)
items[].administratorNamestring (optional)
items[].beginDatestring (optional)
items[].endDatestring (optional)
items[].anchorDatestring (optional)
items[].timeZoneIdinteger (optional)
items[].timeZoneLabelstring (optional)
items[].classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
items[].currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
items[].isTemplateboolean (optional)
items[].totalCostnumber (optional)
items[].submitDatestring (optional)The proposal's submission timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].modifiedDatestring (optional)The proposal's last-modified timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].programIdinteger (optional)The program this proposal is associated with, if any. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].rawobject (optional)The complete wire object, verbatim. See the class remarks.

list_programs

Available on request

Lists programs in Aprimo Marketing Operations, paged and unfiltered.

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

Parameters:

ParameterTypeRequiredDescription
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of ProgramProjectionThe items returned in this response.
items[].programIdinteger
items[].titlestring (optional)PM's real wire field for this is title, not name -- see the class remarks.
items[].ownerIdinteger (optional)
items[].descriptionstring (optional)
items[].startDatestring (optional)
items[].endDatestring (optional)
items[].programTypeIdinteger (optional)
items[].modifiedUserinteger (optional)
items[].modifiedDatestring (optional)
items[].clientIdinteger (optional)
items[].brandIdinteger (optional)
items[].classificationIdinteger (optional)
items[].rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

list_suppliers

Available on request

Lists suppliers in Aprimo Marketing Operations, paged and unfiltered. Use search_suppliers when you need to filter by name; use this to browse.

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

Parameters:

ParameterTypeRequiredDescription
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of SupplierProjectionThe items returned in this response.
items[].supplierIdinteger
items[].namestring (optional)
items[].preferredinteger (optional)
items[].activeFlaginteger (optional)
items[].supplierTypeIdinteger (optional)
items[].notificationTypeIdinteger (optional)
items[].supplierNumberstring (optional)
items[].urlstring (optional)
items[].descriptionstring (optional)
items[].addressLine1string (optional)
items[].addressLine2string (optional)
items[].addressLine3string (optional)
items[].citystring (optional)
items[].statestring (optional)
items[].zipstring (optional)
items[].countrystring (optional)
items[].phonestring (optional)
items[].faxNumberstring (optional)
items[].emailstring (optional)
items[].modifiedUserinteger (optional)
items[].modifiedDatestring (optional)
items[].rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

search_activity_proposals

In the default tool list

Searches activity proposals in Aprimo Marketing Operations by title, paged. A titleFilter is required -- PM has no match-all query for this endpoint.

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

Parameters:

ParameterTypeRequiredDescription
titleFilterstringNoRequired case-insensitive substring filter on the proposal's title -- PM has no match-all query for this endpoint, so this cannot be omitted.
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of ActivityProposalProjectionThe items returned in this response.
items[].proposalIdinteger
items[].titlestring (optional)
items[].descriptionstring (optional)
items[].proposalStateIdinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label.
items[].activityTypeIdinteger (optional)
items[].activityTypeLabelstring (optional)
items[].ownerIdinteger (optional)
items[].ownerNamestring (optional)
items[].administratorIdinteger (optional)
items[].administratorNamestring (optional)
items[].beginDatestring (optional)
items[].endDatestring (optional)
items[].anchorDatestring (optional)
items[].timeZoneIdinteger (optional)
items[].timeZoneLabelstring (optional)
items[].classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
items[].currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
items[].isTemplateboolean (optional)
items[].totalCostnumber (optional)
items[].submitDatestring (optional)The proposal's submission timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].modifiedDatestring (optional)The proposal's last-modified timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].programIdinteger (optional)The program this proposal is associated with, if any. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
items[].rawobject (optional)The complete wire object, verbatim. See the class remarks.

search_program_proposals

Available on request

Searches program proposals in Aprimo Marketing Operations by title, paged. A titleFilter is required -- PM has no match-all query for this endpoint.

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

Parameters:

ParameterTypeRequiredDescription
titleFilterstringYesRequired case-insensitive substring filter on the proposal's title -- PM has no match-all query for this endpoint, so this cannot be omitted.
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of ProgramProposalProjectionThe items returned in this response.
items[].proposalIdinteger
items[].titlestring (optional)
items[].descriptionstring (optional)
items[].classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
items[].proposalStateinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: proposalState.
items[].programTypeIdinteger (optional)Raw id, no existing lookup-list resolver for program types.
items[].ownerIdinteger (optional)
items[].ownerNamestring (optional)Not part of the wire schema -- filled by PmProgramProposalMapper.ResolveAsync.
items[].beginDatestring (optional)
items[].endDatestring (optional)
items[].modifiedDatestring (optional)
items[].modifiedUserinteger (optional)Wire field: modifiedUser.
items[].modifiedByNamestring (optional)Not part of the wire schema -- filled by PmProgramProposalMapper.ResolveAsync.
items[].currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
items[].submitDatestring (optional)
items[].invoiceTotalnumber (optional)
items[].materialTotalnumber (optional)
items[].laborTotalnumber (optional)
items[].tAndETotalnumber (optional)
items[].totalCostnumber (optional)
items[].approvalTypeinteger (optional)PM's ApprovalType enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: approvalType.
items[].objectivestring (optional)
items[].proposalTypeinteger (optional)PM's ProposalType enum, as a raw integer -- no existing resolver maps it to a display label. Wire field: proposalType.
items[].rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

search_suppliers

Available on request

Searches suppliers in Aprimo Marketing Operations by name, paged.

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

Parameters:

ParameterTypeRequiredDescription
nameFilterstringNoOptional case-insensitive substring filter on the supplier's name. Omit to match all suppliers.
limitintegerNoMaximum number of results to return (1–50, default 20).
offsetintegerNoNumber of results to skip for pagination (default 0).
sortFieldstringNoOptional field name to sort by. Omit for default ordering.
sortAscendingbooleanNoSort direction. true = ascending (default), false = descending.

Returns:

FieldTypeDescription
collectionNamestring (optional)Resource-name key the wire's _embedded used (e.g. "Activity", "Project"). Informational; may be null when the response isn't HAL-shaped.
totalRecordsintegerTotal record count across all pages — from the wire's _total.
countintegerNumber of items returned in this response (i.e. Items.Count; precomputed for the llm).
offsetintegerThe offset that was used to produce this page (echoes the caller's offset, clamped to ≥0).
hasMorebooleanTrue when there are more results past this page. Tools should prompt the llm to ask the user about fetching the next page.
nextOffsetinteger (optional)Offset to pass on the next request to continue. Null when is false.
itemsarray of SupplierProjectionThe items returned in this response.
items[].supplierIdinteger
items[].namestring (optional)
items[].preferredinteger (optional)
items[].activeFlaginteger (optional)
items[].supplierTypeIdinteger (optional)
items[].notificationTypeIdinteger (optional)
items[].supplierNumberstring (optional)
items[].urlstring (optional)
items[].descriptionstring (optional)
items[].addressLine1string (optional)
items[].addressLine2string (optional)
items[].addressLine3string (optional)
items[].citystring (optional)
items[].statestring (optional)
items[].zipstring (optional)
items[].countrystring (optional)
items[].phonestring (optional)
items[].faxNumberstring (optional)
items[].emailstring (optional)
items[].modifiedUserinteger (optional)
items[].modifiedDatestring (optional)
items[].rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

update_activity_proposal

In the default tool list

Updates an existing activity proposal by its integer ID in Aprimo Marketing Operations. Only include the fields you intend to change (partial update; omitted fields are left as-is). Requires confirmed=true after showing the user the exact changes. Returns the updated activity proposal.

Parameters:

ParameterTypeRequiredDescription
proposalIdstringYesThe activity proposal's integer ID.
bodystringYesJSON object with the fields to change (PM wire names). Omit fields you don't want to modify.
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 change.

Returns:

FieldTypeDescription
proposalIdinteger
titlestring (optional)
descriptionstring (optional)
proposalStateIdinteger (optional)PM's ProposalState enum, as a raw integer -- no existing resolver maps it to a display label.
activityTypeIdinteger (optional)
activityTypeLabelstring (optional)
ownerIdinteger (optional)
ownerNamestring (optional)
administratorIdinteger (optional)
administratorNamestring (optional)
beginDatestring (optional)
endDatestring (optional)
anchorDatestring (optional)
timeZoneIdinteger (optional)
timeZoneLabelstring (optional)
classificationIdinteger (optional)Raw id, no existing lookup-list resolver for classifications.
currencyCodeinteger (optional)Raw id, no existing lookup-list resolver for currency codes.
isTemplateboolean (optional)
totalCostnumber (optional)
submitDatestring (optional)The proposal's submission timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
modifiedDatestring (optional)The proposal's last-modified timestamp. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
programIdinteger (optional)The program this proposal is associated with, if any. New field surfaced now that PM's snapshot documents the full ActivityProposal schema.
rawobject (optional)The complete wire object, verbatim. See the class remarks.

update_program

Available on request

Updates an existing program by its integer ID in Aprimo Marketing Operations. Only include the fields you intend to change (partial update; omitted fields are left as-is). Requires confirmed=true after showing the user the exact changes. Returns the updated program. Alternatively, identify the program by name instead of programId. Note: resolving by name scans the full program list, which may be slower than by id for large tenants.

Parameters:

ParameterTypeRequiredDescription
programIdstringNoThe program's integer ID. Provide either programId or name, not both.
namestringNoThe program's name. Provide either programId or name, not both.
bodystringNoJSON object with the fields to change (PM wire names). Omit fields you don't want to modify.
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 change.

Returns:

FieldTypeDescription
programIdinteger
titlestring (optional)PM's real wire field for this is title, not name -- see the class remarks.
ownerIdinteger (optional)
descriptionstring (optional)
startDatestring (optional)
endDatestring (optional)
programTypeIdinteger (optional)
modifiedUserinteger (optional)
modifiedDatestring (optional)
clientIdinteger (optional)
brandIdinteger (optional)
classificationIdinteger (optional)
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.

update_supplier

Available on request

Updates an existing supplier by its integer ID in Aprimo Marketing Operations. Only include the fields you intend to change (partial update; omitted fields are left as-is). Requires confirmed=true after showing the user the exact changes. Returns the updated supplier. Alternatively, identify the supplier by name instead of supplierId.

Parameters:

ParameterTypeRequiredDescription
supplierIdstringNoThe supplier's integer ID. Provide either supplierId or name, not both.
namestringNoThe supplier's name. Provide either supplierId or name, not both.
bodystringNoJSON object with the fields to change (PM wire names). Omit fields you don't want to modify.
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 change.

Returns:

FieldTypeDescription
supplierIdinteger
namestring (optional)
preferredinteger (optional)
activeFlaginteger (optional)
supplierTypeIdinteger (optional)
notificationTypeIdinteger (optional)
supplierNumberstring (optional)
urlstring (optional)
descriptionstring (optional)
addressLine1string (optional)
addressLine2string (optional)
addressLine3string (optional)
citystring (optional)
statestring (optional)
zipstring (optional)
countrystring (optional)
phonestring (optional)
faxNumberstring (optional)
emailstring (optional)
modifiedUserinteger (optional)
modifiedDatestring (optional)
rawobject (optional)The complete wire object, verbatim (set by the mapper). See the class remarks.