action biapi_delete_connections_id_connection_sources_id_source {
label: "Disable a connection source"
description: "This will make it so the specified source will not be synchronized anymore.
"
provider: biapi
method: DELETE
path: "/connections/{id_connection}/sources/{id_source}"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_connection: {
type: "integer"
}
id_source: {
type: "integer"
}
}
required: ["id_connection", "id_source"]
additionalProperties: false
}
output: {
type: "object"
required: ["created", "id", "id_connection", "id_connector_source", "name"]
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"
}
}
}
}