action biapi_get_account_types_id_account_type { label: "Get an account type" description: "" provider: biapi method: GET path: "/account_types/{id_account_type}" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_account_type: { type: "integer" } } required: ["id_account_type"] additionalProperties: false } output: { type: "object" required: ["display_name", "display_name_p", "id", "is_invest", "name", "weboob_type_id"] properties: { color: { type: "string" description: "Color of the account type (hexdecimal)" } display_name: { type: "string" description: "Name to display in singular" } display_name_p: { type: "string" description: "Name to display in plurial" } id: { type: "integer" description: "ID of the account type" } id_parent: { type: "integer" description: "Id of the parent type" } is_invest: { type: "boolean" description: "Is it an investment account" } name: { type: "string" description: "Name of the account type" } product: { type: "string" description: "Product associated with the account" } weboob_type_id: { type: "integer" description: "Map to the weboob_type_id" } } } }