action biapi_get_providers_id_connector_sources_id_source { label: "Get the connector source" description: "" provider: biapi method: GET path: "/providers/{id_connector}/sources/{id_source}" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connector: { type: "integer" } id_source: { type: "integer" } } required: ["id_connector", "id_source"] additionalProperties: false } output: { type: "object" required: ["id", "id_connector", "id_weboob", "name"] 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" } } } }