action biapi_get_providers_id_connector_sources { label: "Get list of connector sources" description: "" provider: biapi method: GET path: "/providers/{id_connector}/sources" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connector: { type: "integer" } } required: ["id_connector"] additionalProperties: false } output: { type: "object" required: ["sources"] properties: { sources: { type: "array" items: { type: "object" required: ["id", "id_connector", "name", "id_weboob"] properties: { auth_mechanism: { type: "string" description: "Authentication mechanism to use" } disabled: { type: "string" format: "date-time" description: "This source is not used to synchronize the connection" } disabled_capabilities: { type: "string" description: "Comma separated list of capabilities disabled on this connector source" } fallback: { type: "string" description: "Name of the source this fallback is for" } id: { type: "integer" description: "ID of the connector source" } id_connector: { type: "integer" description: "ID of the connector" } id_weboob: { type: "string" } name: { type: "string" description: "Name of the source" } priority: { type: "integer" description: "The source priority order for the synchronization" } stability: { type: "string" description: "last known stability" } } } } total: { type: "number" description: "total number of results" } } } }