DELETE
/
api
/
v1
/
data_sources
/
{data_source_id}
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.dataSources.delete({
    dataSourceId: 545907,
    reason: "<value>",
  });

  // Handle the result
  console.log(result);
}

run();
"<any>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

data_source_id
integer
required

Query Parameters

reason
string
required

Response

200
application/json
Successful Response

The response is of type any.