action biapi_post_users_id_user_accounts_id_account_transactionsclusters { label: "Create clustered transaction" description: "Form params : - next_date (date) required: Date of transaction - mean_amount (decimal) required: Mean Amount - wording (string) required: name of transaction - id_account (id) required: related account

" provider: biapi method: POST path: "/users/{id_user}/accounts/{id_account}/transactionsclusters" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_account: { type: "integer" } id_user: { type: "string" } } required: ["id_account", "id_user"] additionalProperties: false } output: { type: "object" required: ["enabled", "id", "id_account", "mean_amount", "wording"] properties: { created_by: { type: "string" } enabled: { type: "boolean" } id: { type: "integer" } id_account: { type: "integer" } id_category: { type: "integer" } mean_amount: { type: "number" format: "float" } median_increment: { type: "integer" } next_date: { type: "string" format: "date" } wording: { type: "string" } } } }