action sinao_app_cashflow_cashflowsources_get { label: "Get a CashflowSource" description: "" provider: sinao method: GET path: "/apps/{appId}/cashflowsources/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { properties: { account_type: { type: "string" } balance_amount: { type: "integer" } created_at: { type: "string" format: "date-time" } disabled: { type: "integer" } id: { type: "integer" } identifiant: { type: "string" } name: { type: "string" } parent_cashflow_source: { type: "object" additionalProperties: true } status: { type: "string" } type: { type: "string" } updated_at: { type: "string" format: "date-time" } } } }