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

# Salvar perfil regulatório



## OpenAPI

````yaml /es/phone-numbers-api/api-reference/openapi-phone-numbers.json put /v1/phone-numbers/regulatory/profile
openapi: 3.0.3
info:
  title: 'Notificar API: números de teléfono'
  description: >-
    API para **consultar**, **contratar** (pedidos PIX/tarjeta),
    **regulatorio**, **reemplazo** y **configurar** números del espacio de
    trabajo.


    **Alcances:** `phone_numbers:read` | `phone_numbers:update` |
    `phone_numbers:create` | `phone_numbers:delete`.


    **Autenticación:** encabezado `Authorization: Bearer sk_live_xxxxx` o
    `x-api-key: sk_live_xxxxx`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Producción
security:
  - ntfPhoneBearerAuth: []
  - ntfPhoneApiKeyHeader: []
tags:
  - name: Números de Telefone
    description: Listar, consultar, buscar disponibles y configurar entrada de voz.
  - name: Números de teléfono
paths:
  /v1/phone-numbers/regulatory/profile:
    put:
      tags:
        - Números de Telefone
      summary: Salvar perfil regulatório
      operationId: ntfPhone_regProfile
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ntfPhone_RegProfileResponse'
              example:
                success: true
                data: {}
      security:
        - ntfPhoneBearerAuth: []
        - ntfPhoneApiKeyHeader: []
components:
  schemas:
    ntfPhone_RegProfileResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: object
          additionalProperties: true
          properties: {}
      example:
        success: true
        data: {}
  securitySchemes:
    ntfPhoneBearerAuth:
      type: http
      scheme: bearer
      description: 'Clave API sin formato Portador (ej.: sk_live_...).'
    ntfPhoneApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternativa de clave API al portador.

````