action api2cart_customer_find { label: "CustomerFind" description: "Find customers in store." provider: api2cart method: GET path: "/customer.find.json" encoding: json input: { type: "object" properties: { find_params: { type: "string" } find_value: { type: "string" } find_where: { type: "string" } store_id: { type: "string" } } required: ["find_value"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { email: { type: "string" } first_name: { type: "string" } id: { type: "string" } last_name: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }