action bintable_bin_lookup { label: "Lookup for bin" description: "By passing in the appropriate BIN, you can lookup for\ncard meta data in bintable.com API\n" provider: bintable method: GET path: "/{bin}" encoding: json input: { type: "object" properties: { api_key: { type: "string" } bin: { type: "string" } } required: ["api_key", "bin"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["data", "message", "result"] properties: { data: { type: "object" } message: { type: "string" } result: { type: "integer" } } } } }