sftp-connectors
Delete SFTP connector
Deletes an automated SFTP connector identified by ID.
DELETE
/
headless
/
sftp
/
connectors
/
{id}
/
Delete SFTP connector
curl --request DELETE \
--url https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/ \
--header 'X-Dromo-License-Key: <api-key>'import requests
url = "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/"
headers = {"X-Dromo-License-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Dromo-License-Key': '<api-key>'}};
fetch('https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"X-Dromo-License-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("X-Dromo-License-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/")
.header("X-Dromo-License-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["X-Dromo-License-Key"] = '<api-key>'
response = http.request(request)
puts response.read_bodyAuthorizations
This backend API key is different than your frontend license key. Please use the "Backend" license key from your Dromo Dashboard.
Path Parameters
SFTP connector ID
Example:
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Response
SFTP connector deleted
Previous
Create a sessionCreates a new partial-import session and mints the initial hydration token to pass to the widget. Requires your **backend** license key — never call this client-side.
Next
⌘I
Delete SFTP connector
curl --request DELETE \
--url https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/ \
--header 'X-Dromo-License-Key: <api-key>'import requests
url = "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/"
headers = {"X-Dromo-License-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Dromo-License-Key': '<api-key>'}};
fetch('https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"X-Dromo-License-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("X-Dromo-License-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/")
.header("X-Dromo-License-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dromo.io/api/v1/headless/sftp/connectors/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["X-Dromo-License-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body