action biapi_post_connectors_id_connector_logos { label: "Create a connector Logo" description: "This endpoint creates a connector logo. You can either pass a file to as a parameter to insert and link it with the connector or pass an id_file to link a connector with an existing file. Will fail if the file is already linked with that connector.

Form params: - id_file (integer): The id of the file to link with that connector. - img (string): Path to the image to link with that connector.

" provider: biapi method: POST path: "/connectors/{id_connector}/logos" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connector: { type: "integer" } } required: ["id_connector"] additionalProperties: false } output: { type: "object" required: ["id", "id_connector", "id_file"] properties: { id: { type: "integer" } id_connector: { type: "integer" description: "ID of the connector" } id_file: { type: "integer" description: "Id of the Bank/Provider Logo" } type: { type: "string" description: "Logo's type" } } } }