action brainbi_register_and_create_store_connection_for_woo_commerce { label: "Register and Create Store Connection for WooCommerce" description: "Use this endpoint to make the initial call with your email and password (same as on brainbi.net) and get your bearer token in response." provider: brainbi method: POST path: "/api/register_woocommerce" encoding: json input: { type: "object" properties: { api_url: { type: "string" } company_name: { type: "string" } consumer_key: { type: "string" } consumer_secret: { type: "string" } email: { type: "string" } first_name: { type: "string" } fromuser: { type: "string" } last_name: { type: "string" } password: { type: "string" } shop_url: { type: "string" } store_name: { type: "string" } store_url: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }