Check out our upcoming events and meetups! View events →
Retrieve the current Number Reputation settings for an enterprise.
Returns the enrollment status (pending, approved, rejected, deleted), check frequency, and any rejection reasons.
Returns 404 if reputation has not been enabled for this enterprise.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const reputation = await client.enterprises.reputation.retrieve(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
);
console.log(reputation.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"
Reputation settings
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 reputation = await client.enterprises.reputation.retrieve(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
);
console.log(reputation.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"
}
}