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

# Update subscriber details

> Update subscriber information including KYC level and VULT wallet ID



## OpenAPI

````yaml /olive-openapi.json put /subscribers/{id}
openapi: 3.0.0
info:
  description: >-
    API Gateway for OLIVE NFC Card Payment System - Comprehensive payment, card
    management, agent operations, and admin authentication. All /api/v1 routes
    require authentication using either API Key or JWT token.
  title: OLIVE NFC Card Payment API
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    email: support@olive.sl
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://olive-gateway-a6ba.onrender.com/api/v1
security: []
paths:
  /subscribers/{id}:
    put:
      tags:
        - Subscribers
      summary: Update subscriber details
      description: Update subscriber information including KYC level and VULT wallet ID
      parameters:
        - description: Subscriber ID
          name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/handler.UpdateSubscriberRequest'
        description: Update details
        required: true
      responses:
        '200':
          description: Update successful
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    handler.UpdateSubscriberRequest:
      type: object
      properties:
        address:
          type: string
          example: 456 New St
        category:
          type: string
          example: vip
        district:
          type: string
          example: Western Rural
        email:
          type: string
          example: newemail@example.com
        id_back_url:
          type: string
          example: s3://bucket/kyc/subscriber-id/id-back/file.jpg
        id_front_url:
          type: string
          example: s3://bucket/kyc/subscriber-id/id-front/file.jpg
        kyc_level:
          type: integer
          example: 2
        max_child_cards:
          type: integer
          example: 100
        national_id:
          type: string
          example: ID123456789
        relationship_manager_id:
          type: integer
          example: 1
        vult_wallet_id:
          type: string
          example: VULT123456
  securitySchemes:
    ApiKeyAuth:
      description: >-
        API Key for third-party integrations (WhatsApp, Smart PAY, VULT).
        Format: 'Bearer olive_live_xxxxxxxxxxxxx'
      type: apiKey
      name: Authorization
      in: header
    BearerAuth:
      description: >-
        JWT token from admin login for administrative operations. Format:
        'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
      type: apiKey
      name: Authorization
      in: header

````