action tcgdex_get_dex_ids_dex_id { label: "get_dex_ids_dexId" provider: tcgdex method: GET path: "/dex-ids/{dexId}" encoding: json input: { type: "object" properties: { dexId: { type: "string" } } required: ["dexId"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } }