action brainbi_register { label: "Register" 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" encoding: json input: { type: "object" properties: { company_name: { 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 } }