action biapi_post_clients_id_client_logo { label: "Update the client logo" description: "" provider: biapi method: POST path: "/clients/{id_client}/logo" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_client: { type: "integer" } } required: ["id_client"] additionalProperties: false } output: { type: "object" required: ["content_type", "file_size", "filename", "id"] properties: { content_type: { type: "string" } file_size: { type: "integer" } filename: { type: "string" } id: { type: "integer" } } } }