import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.dialogflowConnections.delete('connection_id');{
"errors": [
{
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Deletes a stored Dialogflow Connection.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.dialogflowConnections.delete('connection_id');{
"errors": [
{
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Uniquely identifies a Telnyx application (Call Control).
The Dialogflow Connection for connection_id was deleted successfully.
Was this page helpful?