action sinao_app_documents_sales_bankdetails_create { label: "Create a BankDetails" description: "" provider: sinao method: POST path: "/apps/{appId}/bankdetails" encoding: json input: { type: "object" properties: { bic: { type: "string" } iban: { type: "string" } name: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { bic: { type: "string" } iban: { type: "string" } id: { type: "integer" } name: { type: "string" } } } }