Check out our upcoming events and meetups! View events →
Update how often reputation data is automatically refreshed.
Note: The enterprise must have approved reputation settings. Updating frequency on pending or rejected settings will return an error.
Available Frequencies:
business_daily — Monday–Fridaydaily — Every day including weekendsweekly — Once per weekbiweekly — Once every two weeksmonthly — Once per monthnever — Manual refresh only (no automatic checks)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.updateFrequency(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
{ check_frequency: 'business_daily' },
);
console.log(response.data);{
"data": {
"enterprise_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"status": "pending",
"check_frequency": "business_daily",
"loa_document_id": "<string>",
"rejection_reasons": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier of the enterprise (UUID)
"6a09cdc3-8948-47f0-aa62-74ac943d6c58"
New frequency for refreshing reputation data
business_daily, daily, weekly, biweekly, monthly, never Reputation frequency updated
Show child attributes
Was this page helpful?
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.updateFrequency(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
{ check_frequency: 'business_daily' },
);
console.log(response.data);{
"data": {
"enterprise_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"status": "pending",
"check_frequency": "business_daily",
"loa_document_id": "<string>",
"rejection_reasons": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}