Waiting for engine...
Skip to main content

listingEntryCategoryAssociation

Creates an association between a listing entry and category. Specify the internal ID and type of the listing entry. Also, specify the category ID of the category that the listing entry association is to be created with.

The listingEntryCategoryAssociation mutation accepts the following input:

categoryID Type internalID

All the fields are required. If the fields are not specified, an exception is thrown.

An example of the request is as follows:

  mutation {
listingEntryCategoryAssociation(input: {
categoryID: "9f7fa19a-0d01-628a-c5af-b4cbe006d32f",
type: CONNECTOR,
internalID: "peachtreesdk"
}) {
categoryID
internalID
type
}
}

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

{

categoryID internalID type }

listingEntryCategoryAssociation(
input: ListingEntryCategoryInput
): ListingEntryCategory

Arguments

listingEntryCategoryAssociation.input ● ListingEntryCategoryInput input platform

Type

ListingEntryCategory object platform

On this Page