Capabilities

SEARCH_GAME_CATALOG

Search loaded item templates for the product editor

Bridge contract

JsonArray searchCatalog(String term, int limit);

Search the pack's loaded item templates by case-insensitive name or numeric item ID. Clamp limit to 1–50. Order matches as follows:

  1. Exact ID or name
  2. Name prefix
  3. Name substring

Each result must match:

{ "itemId": 57, "name": "Adena", "type": "EtcItem", "grade": null, "stackable": true }

type and grade may be null when the pack does not expose them.

Verification

Connector check searches for a with a limit of one. An empty result is valid if the request completes successfully.

On this page