Skip to main content
DELETE
/
enterprises
/
{enterprise_id}
/
reputation
/
numbers
/
{phone_number}
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

await client.enterprises.reputation.numbers.disassociate('+19493253498', {
  enterprise_id: '4a6192a4-573d-446d-b3ce-aff9117272a6',
});

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

enterprise_id
string<uuid>
required

The enterprise id. Lowercase UUID.

Example:

"4a6192a4-573d-446d-b3ce-aff9117272a6"

phone_number
string
required

Phone number in E.164 format (+1NPANXXXXXX for US/CA). The leading + MUST be URL-encoded as %2B (e.g. %2B19493253498).

Example:

"+19493253498"

Response

204 (no body)