action biapi_delete_users_id_user_connections_id_connection { label: "Delete a connection." description: "This endpoint deletes a connection and all related accounts and transactions.

" provider: biapi method: DELETE path: "/users/{id_user}/connections/{id_connection}" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connection: { type: "integer" } id_user: { type: "string" } } required: ["id_connection", "id_user"] additionalProperties: false } output: { type: "object" required: ["active", "id", "id_connector"] properties: { active: { type: "boolean" description: "This connection is active and will be automatically synced" } created: { type: "string" format: "date-time" description: "Creation date" } id: { type: "integer" description: "ID of connection" } id_connector: { type: "integer" description: "ID of the related connector" } id_user: { type: "integer" description: "ID of the related user" } last_push: { type: "string" format: "date-time" description: "Last successful push" } last_update: { type: "string" format: "date-time" description: "Last successful update" } next_try: { type: "string" format: "date-time" description: "Date of next synchronization" } } } }