> ## 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.

# Get reputation settings

> 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.



## OpenAPI

````yaml https://telnyx-openapi-ng.s3.us-east-1.amazonaws.com/number-reputation/settings.yml get /enterprises/{enterprise_id}/reputation
openapi: 3.1.0
info:
  title: Telnyx Number Reputation Settings API
  version: 2.0.0
  description: >-
    Enable, configure, and manage Number Reputation monitoring for your
    enterprise. Control auto-refresh frequency and manage the reputation
    monitoring lifecycle.
  contact:
    email: support@telnyx.com
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
paths:
  /enterprises/{enterprise_id}/reputation:
    get:
      tags:
        - Number Reputation Settings
      summary: Get reputation settings
      description: >-
        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.
      operationId: GetReputationSettings
      parameters:
        - $ref: '#/components/parameters/EnterpriseId'
      responses:
        '200':
          description: Reputation settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnterpriseReputationPublicWrapped'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Reputation settings not found for this enterprise
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/branded-calling_ErrorResponse'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            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);
        - lang: Python
          source: |-
            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(
                "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
            )
            print(reputation.data)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/team-telnyx/telnyx-go\"\n\t\"github.com/team-telnyx/telnyx-go/option\"\n)\n\nfunc main() {\n\tclient := telnyx.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\treputation, err := client.Enterprises.Reputation.Get(context.TODO(), \"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", reputation.Data)\n}\n"
        - lang: Java
          source: >-
            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("6a09cdc3-8948-47f0-aa62-74ac943d6c58");
                }
            }
        - lang: Ruby
          source: >-
            require "telnyx"


            telnyx = Telnyx::Client.new(api_key: "My API Key")


            reputation =
            telnyx.enterprises.reputation.retrieve("6a09cdc3-8948-47f0-aa62-74ac943d6c58")


            puts(reputation)
        - lang: CLI
          source: |-
            telnyx enterprises:reputation retrieve \
              --api-key 'My API Key' \
              --enterprise-id 6a09cdc3-8948-47f0-aa62-74ac943d6c58
components:
  parameters:
    EnterpriseId:
      name: enterprise_id
      in: path
      required: true
      description: Unique identifier of the enterprise (UUID)
      schema:
        type: string
        format: uuid
        example: 6a09cdc3-8948-47f0-aa62-74ac943d6c58
  schemas:
    EnterpriseReputationPublicWrapped:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/EnterpriseReputationPublic'
    branded-calling_ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/TelnyxError'
    EnterpriseReputationPublic:
      type: object
      properties:
        enterprise_id:
          type: string
          format: uuid
          description: ID of the associated enterprise
          example: 6a09cdc3-8948-47f0-aa62-74ac943d6c58
        status:
          type: string
          enum:
            - pending
            - approved
            - rejected
            - deleted
          description: Current enrollment status
        check_frequency:
          type: string
          enum:
            - business_daily
            - daily
            - weekly
            - biweekly
            - monthly
            - never
          description: Frequency for refreshing reputation data
        loa_document_id:
          type: string
          nullable: true
          description: ID of the signed LOA document
        rejection_reasons:
          type: array
          nullable: true
          items:
            type: string
          description: Reasons for rejection (present when status is rejected)
        created_at:
          type: string
          format: date-time
          description: When the reputation settings were created
        updated_at:
          type: string
          format: date-time
          description: When the reputation settings were last updated
    TelnyxError:
      type: object
      properties:
        code:
          type: string
          description: Telnyx error code
          example: '10015'
        title:
          type: string
          description: Short error title
          example: Bad Request
        detail:
          type: string
          description: Human-readable error detail
          example: User has already agreed to Terms of Service version v1.0.0
        meta:
          type: object
          properties:
            url:
              type: string
              format: uri
              description: Link to error documentation
        source:
          type: object
          description: Reference to the field that caused the error
          properties:
            pointer:
              type: string
              description: JSON pointer (RFC6901) to the field that caused the error
              example: /body/organization_type
      required:
        - code
        - title
  responses:
    Unauthorized:
      description: Unauthorized — missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/branded-calling_ErrorResponse'
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````