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

# Reassign Ftd Manager

> Reassign the owner of a confirmed FTD for dispute resolution.

Re-snapshots manager_id, manager_name, manager_team_id, manager_team_name,
manager_parent_team_id, manager_parent_team_name from the new user's current
team. Does NOT touch completed_at, total_usd, tx_count, minimum_usd, country,
affiliate_id, affiliate_lead_id, campaign_id, or funnel.

Also updates customers.ftd_sales_agent_id to the new user.
Writes one audit_log row with action='ftd_reassign'.



## OpenAPI

````yaml /openapi.json patch /ftd/{ftd_id}/manager
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /ftd/{ftd_id}/manager:
    patch:
      tags:
        - Reporting
      summary: Reassign Ftd Manager
      description: >-
        Reassign the owner of a confirmed FTD for dispute resolution.


        Re-snapshots manager_id, manager_name, manager_team_id,
        manager_team_name,

        manager_parent_team_id, manager_parent_team_name from the new user's
        current

        team. Does NOT touch completed_at, total_usd, tx_count, minimum_usd,
        country,

        affiliate_id, affiliate_lead_id, campaign_id, or funnel.


        Also updates customers.ftd_sales_agent_id to the new user.

        Writes one audit_log row with action='ftd_reassign'.
      operationId: reassign_ftd_manager_ftd__ftd_id__manager_patch
      parameters:
        - name: ftd_id
          in: path
          required: true
          schema:
            type: integer
            title: Ftd Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FtdReassignRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FtdResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    FtdReassignRequest:
      properties:
        user_id:
          type: string
          format: uuid
          title: User Id
        reason:
          type: string
          maxLength: 500
          minLength: 10
          title: Reason
      type: object
      required:
        - user_id
        - reason
      title: FtdReassignRequest
    FtdResponse:
      properties:
        id:
          type: integer
          title: Id
        customer_id:
          type: string
          format: uuid
          title: Customer Id
        account_id:
          type: string
          format: uuid
          title: Account Id
        manager_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Manager Id
        manager_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Manager Name
        manager_team_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Manager Team Id
        manager_team_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Manager Team Name
        manager_parent_team_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Manager Parent Team Id
        manager_parent_team_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Manager Parent Team Name
        affiliate_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Affiliate Id
        affiliate_lead_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Affiliate Lead Id
        campaign_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Campaign Id
        funnel:
          anyOf:
            - type: string
            - type: 'null'
          title: Funnel
        total_usd:
          type: string
          title: Total Usd
        tx_count:
          type: integer
          title: Tx Count
        minimum_usd:
          type: string
          title: Minimum Usd
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
        completed_at:
          type: string
          format: date-time
          title: Completed At
        created_at:
          type: string
          format: date-time
          title: Created At
        customer_full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Full Name
        customer_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Email
      type: object
      required:
        - id
        - customer_id
        - account_id
        - manager_id
        - manager_name
        - manager_team_id
        - manager_team_name
        - manager_parent_team_id
        - manager_parent_team_name
        - affiliate_id
        - affiliate_lead_id
        - campaign_id
        - funnel
        - total_usd
        - tx_count
        - minimum_usd
        - country
        - completed_at
        - created_at
      title: FtdResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````