Get phone-number reputation settings for an enterprise
Phone Number Reputation tracks how your outbound caller-IDs are perceived (spam risk, engagement, etc.) across the call-screening ecosystem. This endpoint reads the enterprise-level settings: whether the product is enabled, the refresh cadence, and the stored Letter of Authorization document id.
Returns 404 if reputation has never been enabled for this enterprise.
GET
/
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 reputation = await client.enterprises.reputation.retrieve(
'4a6192a4-573d-446d-b3ce-aff9117272a6',
);
console.log(reputation.data);import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
reputation = client.enterprises.reputation.retrieve(
"4a6192a4-573d-446d-b3ce-aff9117272a6",
)
print(reputation.data)package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
reputation, err := client.Enterprises.Reputation.Get(context.TODO(), "4a6192a4-573d-446d-b3ce-aff9117272a6")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", reputation.Data)
}package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.enterprises.reputation.ReputationRetrieveParams;
import com.telnyx.sdk.models.enterprises.reputation.ReputationRetrieveResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
ReputationRetrieveResponse reputation = client.enterprises().reputation().retrieve("4a6192a4-573d-446d-b3ce-aff9117272a6");
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
reputation = telnyx.enterprises.reputation.retrieve("4a6192a4-573d-446d-b3ce-aff9117272a6")
puts(reputation)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$reputation = $client->enterprises->reputation->retrieve(
'4a6192a4-573d-446d-b3ce-aff9117272a6'
);
var_dump($reputation);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx enterprises:reputation retrieve \
--api-key 'My API Key' \
--enterprise-id 4a6192a4-573d-446d-b3ce-aff9117272a6curl --request GET \
--url https://api.telnyx.com/v2/enterprises/{enterprise_id}/reputation \
--header 'Authorization: Bearer <token>'{
"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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The enterprise id. Lowercase UUID.
Example:
"4a6192a4-573d-446d-b3ce-aff9117272a6"
Response
Reputation settings.
Show child attributes
Show child attributes
Was this page helpful?
Agree to the Phone Number Reputation Terms of Service
Previous
Enable phone-number reputation for an enterprise
Next
⌘I
JavaScript
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(
'4a6192a4-573d-446d-b3ce-aff9117272a6',
);
console.log(reputation.data);import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
reputation = client.enterprises.reputation.retrieve(
"4a6192a4-573d-446d-b3ce-aff9117272a6",
)
print(reputation.data)package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
reputation, err := client.Enterprises.Reputation.Get(context.TODO(), "4a6192a4-573d-446d-b3ce-aff9117272a6")
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", reputation.Data)
}package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.enterprises.reputation.ReputationRetrieveParams;
import com.telnyx.sdk.models.enterprises.reputation.ReputationRetrieveResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
ReputationRetrieveResponse reputation = client.enterprises().reputation().retrieve("4a6192a4-573d-446d-b3ce-aff9117272a6");
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
reputation = telnyx.enterprises.reputation.retrieve("4a6192a4-573d-446d-b3ce-aff9117272a6")
puts(reputation)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$reputation = $client->enterprises->reputation->retrieve(
'4a6192a4-573d-446d-b3ce-aff9117272a6'
);
var_dump($reputation);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx enterprises:reputation retrieve \
--api-key 'My API Key' \
--enterprise-id 4a6192a4-573d-446d-b3ce-aff9117272a6curl --request GET \
--url https://api.telnyx.com/v2/enterprises/{enterprise_id}/reputation \
--header 'Authorization: Bearer <token>'{
"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"
}
}