> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revdesk.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the caller's enterprise registration

> Returns the own-brand enterprise record if one has been registered, or null otherwise.



## OpenAPI

````yaml /openapi.json get /v1/caller-trust/enterprise
openapi: 3.1.0
info:
  title: RevDesk v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the RevDesk voice platform — calls, numbers, caller
    trust, and brands.
  contact:
    name: RevDesk
    email: support@revdesk.com
servers:
  - url: https://api.revdesk.com
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Agents
  - name: Documents
  - name: Sub-entities
paths:
  /v1/caller-trust/enterprise:
    get:
      tags:
        - Enterprise Registration
      summary: Get the caller's enterprise registration
      description: >-
        Returns the own-brand enterprise record if one has been registered, or
        null otherwise.
      operationId: v1_caller_trust_enterprise_get
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    anyOf:
                      - type: object
                        properties:
                          id:
                            type: string
                          carrier_enterprise_id:
                            anyOf:
                              - type: string
                              - type: 'null'
                          legal_name:
                            type: string
                          dba:
                            type: string
                          role_type:
                            type: string
                          status:
                            type: string
                          rejection_reasons:
                            type: array
                            items:
                              type: string
                          synced_at:
                            anyOf:
                              - type: string
                              - type: 'null'
                          loa_document_id:
                            anyOf:
                              - type: string
                              - type: 'null'
                          read_only:
                            type: boolean
                        required:
                          - id
                          - carrier_enterprise_id
                          - legal_name
                          - dba
                          - role_type
                          - status
                          - rejection_reasons
                          - synced_at
                          - loa_document_id
                          - read_only
                        additionalProperties: false
                      - type: 'null'
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````