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

# Re-sign the LOA for an enterprise (by ID)

> Use when the on-file LOA needs to be replaced. Replaces the LOA with the carrier; the old LoaSignature row is preserved for audit. Status resets to PENDING_VETTING. Addresses a specific registration by ID.



## OpenAPI

````yaml /openapi.json post /v1/caller-trust/enterprise/{id}/resign
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/{id}/resign:
    post:
      tags:
        - Enterprise Registration
      summary: Re-sign the LOA for an enterprise (by ID)
      description: >-
        Use when the on-file LOA needs to be replaced. Replaces the LOA with the
        carrier; the old LoaSignature row is preserved for audit. Status resets
        to PENDING_VETTING. Addresses a specific registration by ID.
      operationId: v1_caller_trust_enterprise_id_resign_post
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: Idempotency-Key
          in: header
          required: false
          description: >-
            UUID — when present, deduplicates repeat submissions. See
            /api-reference/idempotency.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: http://json-schema.org/draft-07/schema#
              type: object
              properties:
                signer_full_name:
                  type: string
                  minLength: 2
                  maxLength: 255
                signer_email:
                  type: string
                  format: email
                  pattern: >-
                    ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
                signer_title:
                  type: string
                  minLength: 1
                  maxLength: 255
                consent_acknowledged_at:
                  type: string
                  format: date-time
                  pattern: >-
                    ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                confirm_carrier_commit:
                  type: string
                  const: I understand this submits to the carrier
              required:
                - signer_full_name
                - signer_email
                - signer_title
                - consent_acknowledged_at
                - confirm_carrier_commit
              additionalProperties: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      carrier_enterprise_id:
                        anyOf:
                          - type: string
                          - type: 'null'
                      legal_name:
                        type: string
                      dba:
                        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'
                      reputation:
                        anyOf:
                          - type: object
                            properties:
                              status:
                                type: string
                              check_frequency:
                                type: string
                              rejection_reasons:
                                type: array
                                items:
                                  type: string
                              last_synced_at:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - status
                              - check_frequency
                              - rejection_reasons
                              - last_synced_at
                            additionalProperties: false
                          - type: 'null'
                    required:
                      - id
                      - carrier_enterprise_id
                      - legal_name
                      - dba
                      - status
                      - rejection_reasons
                      - synced_at
                      - loa_document_id
                      - reputation
                    additionalProperties: false
                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

````