Drop a blocked column from the destination
Marks for deletion a blocked column from your table in the destination of an existing connector within your Fivetran account. The column is dropped from the destination on the next sync.
Request schema
Path parameters
connectorId
stringrequired
The unique identifier for the connector within the Fivetran system
example:
schemaName
stringrequired
The database schema name within your destination (different from the connector schema)
example:
tableName
stringrequired
The table name within your database schema
example:
columnName
stringrequired
The column name within your table
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
DELETE
https://api.fivetran.com/v1/connectors/connector_id/schemas/schema_name/tables/table_name/columns/column_name
DELETE /v1/connectors/connector_id/schemas/schema_name/tables/table_name/columns/column_name HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
400
Bad request
404
Not found error
409
Column not in blocked state error
Successful response schema
code
stringrequired
Response status code
example:
message
stringrequired
Response status text
example:
{
"code": "Success",
"message": "Operation performed."
}