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

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

const response = await client.enterprises.reputation.enable(
  '4a6192a4-573d-446d-b3ce-aff9117272a6',
  { loa_document_id: '2a7e8337-e803-4057-a4ae-26c40eb0bc6c', check_frequency: 'business_daily' },
);

console.log(response.data);
{
  "data": {
    "enterprise_id": "4a6192a4-573d-446d-b3ce-aff9117272a6",
    "loa_document_id": "2a7e8337-e803-4057-a4ae-26c40eb0bc6c",
    "loa_status": "pending",
    "rejection_reasons": [
      "<string>"
    ],
    "created_at": "2026-04-26T18:06:51.940749Z",
    "updated_at": "2026-04-26T18:09:24.785211Z"
  }
}

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"

Body

application/json
loa_document_id
string
required

Id of the signed Letter of Authorization document, returned by the Telnyx Documents API after upload (upload via POST /v2/documents; see https://developers.telnyx.com/api/documents).

Required string length: 1 - 255
Example:

"2a7e8337-e803-4057-a4ae-26c40eb0bc6c"

check_frequency
enum<string>
default:business_daily

Refresh cadence. Defaults to business_daily if omitted.

Available options:
business_daily,
daily,
weekly,
biweekly,
monthly,
never

Response

Reputation enabled.

data
object
required