DELETE
/
api
/
v1
/
insights
/
workflows
/
{workflow_id}
import { SyllableSDK } from "syllable-sdk";

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

async function run() {
  const result = await syllableSDK.insights.workflows.delete({
    workflowId: 545907,
  });

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

run();
"<any>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

workflow_id
integer
required

Response

200
application/json
Successful Response

The response is of type any.