action biapi_post_banks_categories_id_category {
label: "Edit a bank categories"
description: "Edit the name for the supplied category.
"
provider: biapi
method: POST
path: "/banks/categories/{id_category}"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_category: {
type: "integer"
}
}
required: ["id_category"]
additionalProperties: false
}
output: {
type: "object"
required: ["id", "name"]
properties: {
id: {
type: "integer"
description: "ID of the bank category"
}
name: {
type: "string"
description: "Name of the category"
}
}
}
}