action biapi_get_users_id_user_account_types { label: "Get account types" description: "" provider: biapi method: GET path: "/users/{id_user}/account_types" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_user: { type: "string" } } required: ["id_user"] additionalProperties: false } output: { type: "object" required: ["accounttypes"] properties: { accounttypes: { type: "array" items: { type: "object" required: ["id", "name", "is_invest", "weboob_type_id", "display_name_p", "display_name"] 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" } } } } total: { type: "number" description: "total number of results" } } } }