import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const document = await client.documents.delete('6a09cdc3-8948-47f0-aa62-74ac943d6c58');console.log(document.data);
A document can only be deleted if it’s not linked to a service. If it is linked to a service, it must be unlinked prior to deleting.
DELETE
/
documents
/
{id}
JavaScript
Copy
Ask AI
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const document = await client.documents.delete('6a09cdc3-8948-47f0-aa62-74ac943d6c58');console.log(document.data);