Waiting for engine...
Skip to main content

listingEntryUpdate

Specify the Listing Entry Id that you want to update.

The listingEntryUpdate mutation accepts the following input: listingEntryId, name, isFeatured, shortDescription, learnMoreUrl, boomiHelpLink.

The name, isFeatured, shortDescription, learnMoreUrl, and boomiHelpLink are all optional input fields.

However, if you specify the Name field, you must supply a non-empty string for the name.

If the Name field is specified without a text string, an exception is thrown.

Non-valid URLs will also cause an exception.

An example of the request is as follows:

    mutation{
listingEntryUpdate(input: {
listingEntryId: "793a2c34-8829-4ead-9d89-7c2587d8b47d",
name: "Boomi Partner API",
isFeatured: true,
shortDescription: "The AtomSphere Partner API connector enables you to perform the object-based operations
and actions exposed in the AtomSphere Partner API.",
learnMoreUrl: "https://help.boomi.com/bundle/connectors/page/r-atm-AtomSphere_Partner_API_connector.html",
boomiHelpLink: "https://help.boomi.com/bundle/connectors/page/r-atm-AtomSphere_Partner_API_connector.html"
}) {
listingEntryId
name
internalID
type
isFeatured
shortDescription
learnMoreUrl
boomiHelpLink
}
}

The second part of the input represents what the call returns back to you. {

listingEntryId name internalID type isFeatured shortDescription learnMoreUrl boomiHelpLink }

If the entry represents a virtual connector, the internalID is shown as <parent connector type>:<virtual connector type>.
Examples:

  1. For connector "Microsoft Azure SQL Database", the internalID is shown as "database:azuresql"
  2. For connector "Microsoft Azure SQL Data Warehouse" the internalID, is shown as "database:azuredatawarehouse"
listingEntryUpdate(
input: ListingEntryUpdateInput
): ListingEntry

Arguments

listingEntryUpdate.input ● ListingEntryUpdateInput input platform

Type

ListingEntry object platform

On this Page