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

# Transfer subscriptions to another client

> Transfers one or more subscriptions from their current client to a different client. Creates a transfer log entry for each subscription. The operation is atomic.



## OpenAPI

````yaml /generated/specs/operations.json post /api/v1/subscription_details/transfer
openapi: 3.0.0
info:
  title: Raul API - Operaciones
  description: Suscripciones, GPS, actividades, visitas y operacion tecnica.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/subscription_details/transfer:
    post:
      tags:
        - Subscription Details
      summary: Transfer subscriptions to another client
      description: >-
        Transfers one or more subscriptions from their current client to a
        different client. Creates a transfer log entry for each subscription.
        The operation is atomic.
      operationId: SubscriptionDetailsController_transfer
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransferSubscriptionDto'
      responses:
        '201':
          description: Subscriptions transferred successfully
        '400':
          description: Invalid request (same client, empty IDs)
        '404':
          description: Subscription not found
      security:
        - bearerAuth: []
components:
  schemas:
    TransferSubscriptionDto:
      type: object
      properties:
        subscription_detail_ids:
          description: Subscription detail IDs to transfer
          type: array
          items:
            type: string
        to_client_id:
          type: string
          description: Target client ID to transfer subscriptions to
        effective_date:
          type: string
          description: Effective date of the transfer (ISO 8601)
        reason:
          type: string
          description: Reason for the transfer
      required:
        - subscription_detail_ids
        - to_client_id
        - effective_date
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````