action biapi_post_users_id_user_connections_id_connection_transactionscluster {
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}/connections/{id_connection}/transactionsclusters"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_connection: {
type: "integer"
}
id_user: {
type: "string"
}
}
required: ["id_connection", "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"
}
}
}
}