action biapi_get_connections_id_connection_sources { label: "Get connection sources" description: "" provider: biapi method: GET path: "/connections/{id_connection}/sources" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connection: { type: "integer" } } required: ["id_connection"] additionalProperties: false } output: { type: "object" required: ["sources"] properties: { sources: { type: "array" items: { type: "object" required: ["id", "id_connection", "id_connector_source", "name", "created"] properties: { access_expire: { type: "string" format: "date-time" description: "Expiration date of the access" } created: { type: "string" format: "date-time" description: "Creation date of the connection source" } disabled: { type: "string" format: "date-time" description: "This source is not used to synchronize the connection" } expire: { type: "string" format: "date-time" description: "Expiration of the connection source. Used to purge the connection in case completion was not finished" } id: { type: "integer" description: "ID of connection" } id_connection: { type: "integer" description: "ID of the related connection" } id_connector_source: { type: "integer" description: "ID of the related connector source" } last_update: { type: "string" format: "date-time" description: "Last successful update" } name: { type: "string" description: "Name of the connection source" } next_try: { type: "string" format: "date-time" description: "Date of next synchronization" } state: { type: "string" description: "If the last update has failed, the state code" } } } } total: { type: "number" description: "total number of results" } } } }