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