Huma User Deprecated API

The User Deprecated API from Huma — 31 operation(s) for user deprecated.

Operations 34

GET /api/extensions/v1beta/user/{user_id} Retrieve User Profile #
POST /api/extensions/v1beta/user/{user_id} Update User Profile #
POST /api/extensions/v1beta/user/{user_id}/add-role Add Roles #
GET /api/extensions/v1beta/user/{user_id}/configuration Retrieve Deployment Config #
POST /api/extensions/v1beta/user/{user_id}/deployment/{deployment_id}/helperagreementlog Create Helper Agreement Log #
GET /api/extensions/v1beta/user/{user_id}/document Retrieve Personal Documents #
POST /api/extensions/v1beta/user/{user_id}/document Create Personal Document #
GET /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id} Retrieve User Econsent #
POST /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id} Assign Econsent To User #
GET /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/pdf Retrieve Econsent Pdf #
POST /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/sign Sign Econsent #
POST /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/withdraw Withdraw Econsent #
GET /api/extensions/v1beta/user/{user_id}/fullconfiguration Retrieve Full Configuration For User #
POST /api/extensions/v1beta/user/{user_id}/labels Assign User Labels #
POST /api/extensions/v1beta/user/{user_id}/move/{target_deployment_id} Move User #
GET /api/extensions/v1beta/user/{user_id}/move/history Retrieve Move User History #
POST /api/extensions/v1beta/user/{user_id}/offboard Off Board User #
GET /api/extensions/v1beta/user/{user_id}/profiles/assigned Retrieve Profiles With Assigned Manager With User Id #
GET /api/extensions/v1beta/user/{user_id}/proxy-invitations Retrieve Proxy Invitations #
POST /api/extensions/v1beta/user/{user_id}/reactivate Reactivate User #
POST /api/extensions/v1beta/user/{user_id}/remove-role Remove Roles #
GET /api/extensions/v1beta/user/{user_id}/resources Retrieve User Resources #
POST /api/extensions/v1beta/user/add-role Add Roles To Users #
POST /api/extensions/v1beta/user/analytics Retrieve Analytics Url #
POST /api/extensions/v1beta/user/assign Assign Managers To Users #
POST /api/extensions/v1beta/user/labels Assign Labels To Users #
GET /api/extensions/v1beta/user/move/users Retrieve Moved Users #
POST /api/extensions/v1beta/user/offboard Offboard Users #
GET /api/extensions/v1beta/user/profiles/assigned Retrieve Profiles With Assigned Manager #
POST /api/extensions/v1beta/user/reactivate Reactivate Users #
POST /api/extensions/v1beta/user/staff Retrieve Staff List #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/huma-user-deprecated-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

huma-user-deprecated-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Huma Platform User Deprecated API
  version: 1.0.0
  description: Huma Platform
servers:
- url: https://workspace-gcp-uk.api.huma.com/api/integration/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: User Deprecated
paths:
  /api/extensions/v1beta/user/{user_id}:
    get:
      operationId: api_extensions_v1beta_user_retrieve_[retrieve_user_profile]
      summary: Retrieve User Profile
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserDTODRF'
          description: ''
    post:
      operationId: api_extensions_v1beta_user_create_[update_user_profile]
      summary: Update User Profile
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserProfileRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UpdateUserProfileRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/UpdateUserProfileRequestDataDRF'
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/add-role:
    post:
      operationId: api_extensions_v1beta_user_add_role_create_[add_roles]
      summary: Add Roles
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/assign-proxy:
    post:
      operationId: api_extensions_v1beta_user_assign_proxy_create_[link_proxy_user]
      summary: Link Proxy User
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkProxyRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/LinkProxyRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/LinkProxyRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LinkProxyUserResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/configuration:
    get:
      operationId: api_extensions_v1beta_user_configuration_retrieve_[retrieve_deployment_config]
      summary: Retrieve Deployment Config
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveDeploymentConfigResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/consent/{consent_id}/sign:
    post:
      operationId: api_extensions_v1beta_user_consent_sign_create_[sign_consent]
      summary: Sign Consent
      parameters:
      - in: path
        name: consent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignConsentRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SignConsentRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SignConsentRequestDataDRF'
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/deployment/{deployment_id}/helperagreementlog:
    post:
      operationId: api_extensions_v1beta_user_deployment_helperagreementlog_create_[create_helper_agreement_log]
      description: 'Create helper agreement log

        Create a helper agreement log for a user within a deployment.'
      summary: Create Helper Agreement Log
      parameters:
      - in: path
        name: deployment_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateHelperAgreementLogRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreateHelperAgreementLogRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateHelperAgreementLogRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/document:
    get:
      operationId: api_extensions_v1beta_user_document_retrieve_[retrieve_personal_documents]
      description: 'Retrieve personal documents

        Retrieve all personal documents associated with a user.'
      summary: Retrieve Personal Documents
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PersonalDocumentDRF'
          description: ''
    post:
      operationId: api_extensions_v1beta_user_document_create_[create_personal_document]
      description: 'Create personal document

        Create a personal document for a user.'
      summary: Create Personal Document
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePersonalDocumentRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreatePersonalDocumentRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreatePersonalDocumentRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}:
    get:
      operationId: api_extensions_v1beta_user_econsent_retrieve_[retrieve_user_econsent]
      summary: Retrieve User Econsent
      parameters:
      - in: path
        name: econsent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EConsentDRF'
          description: ''
    post:
      operationId: api_extensions_v1beta_user_econsent_create_[assign_econsent_to_user]
      summary: Assign Econsent To User
      parameters:
      - in: path
        name: econsent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/pdf:
    get:
      operationId: api_extensions_v1beta_user_econsent_pdf_retrieve_[retrieve_econsent_pdf]
      description: 'Retrieve econsent PDF(s)

        Returns all user''s econsent pdfs.'
      summary: Retrieve Econsent Pdf
      parameters:
      - in: path
        name: econsent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EConsentLogDTODRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/sign:
    post:
      operationId: api_extensions_v1beta_user_econsent_sign_create_[sign_econsent]
      summary: Sign Econsent
      parameters:
      - in: path
        name: econsent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignEConsentRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SignEConsentRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SignEConsentRequestDataDRF'
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/econsent/{econsent_id}/withdraw:
    post:
      operationId: api_extensions_v1beta_user_econsent_withdraw_create_[withdraw_econsent]
      summary: Withdraw Econsent
      parameters:
      - in: path
        name: econsent_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WithdrawEConsentRequestBodyDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/WithdrawEConsentRequestBodyDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/WithdrawEConsentRequestBodyDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          description: No response body
  /api/extensions/v1beta/user/{user_id}/fullconfiguration:
    get:
      operationId: api_extensions_v1beta_user_fullconfiguration_retrieve_[retrieve_full_configuration_for_user]
      summary: Retrieve Full Configuration For User
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveFullConfigurationResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/labels:
    post:
      operationId: api_extensions_v1beta_user_labels_create_[assign_user_labels]
      summary: Assign User Labels
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUserRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUserRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUserRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/move/{target_deployment_id}:
    post:
      operationId: api_extensions_v1beta_user_move_create_[move_user]
      description: 'Move user

        Move a user to a different deployment.'
      summary: Move User
      parameters:
      - in: path
        name: target_deployment_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MoveUserRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MoveUserRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/MoveUserRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/move/history:
    get:
      operationId: api_extensions_v1beta_user_move_history_retrieve_[retrieve_move_user_history]
      description: 'Retrieve move user history

        Retrieve the move history of a user.'
      summary: Retrieve Move User History
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveMoveUserHistoryResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/offboard:
    post:
      operationId: api_extensions_v1beta_user_offboard_create_[off_board_user]
      description: 'Offboard user

        Offboard a user from a deployment.'
      summary: Off Board User
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/profiles/assigned:
    get:
      operationId: api_extensions_v1beta_user_profiles_assigned_retrieve_[retrieve_profiles_with_assigned_manager_with_user_id]
      summary: Retrieve Profiles With Assigned Manager With User Id
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserDTODRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/proxy-invitations:
    get:
      operationId: api_extensions_v1beta_user_proxy_invitations_retrieve_[retrieve_proxy_invitations]
      description: 'Retrieve proxy invitations

        Retrieve all proxy invitations for a user.'
      summary: Retrieve Proxy Invitations
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveProxyInvitationsResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/reactivate:
    post:
      operationId: api_extensions_v1beta_user_reactivate_create_[reactivate_user]
      description: 'Reactivate user

        Reactivate a suspended user account.'
      summary: Reactivate User
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/remove-role:
    post:
      operationId: api_extensions_v1beta_user_remove_role_create_[remove_roles]
      summary: Remove Roles
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AddRolesInputDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '204':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/resources:
    get:
      operationId: api_extensions_v1beta_user_resources_retrieve_[retrieve_user_resources]
      description: 'Retrieve user resources

        Retrieve all resources available to a user.'
      summary: Retrieve User Resources
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveUserResourcesResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/{user_id}/unassign-proxy:
    post:
      operationId: api_extensions_v1beta_user_unassign_proxy_create_[unlink_proxy_user]
      summary: Unlink Proxy User
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
          pattern: ^[a-f0-9]{24}$
        required: true
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UnlinkProxyRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UnlinkProxyRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/UnlinkProxyRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '204':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/add-role:
    post:
      operationId: api_extensions_v1beta_user_add_role_create_[add_roles_to_users]
      summary: Add Roles To Users
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddRolesToUsersRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AddRolesToUsersRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AddRolesToUsersRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddRolesToUserResponseDRF'
          description: ''
  /api/extensions/v1beta/user/analytics:
    post:
      operationId: api_extensions_v1beta_user_analytics_create_[retrieve_analytics_url]
      summary: Retrieve Analytics Url
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RetrieveAnalyticsUrlRequestObjectDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/RetrieveAnalyticsUrlRequestObjectDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/RetrieveAnalyticsUrlRequestObjectDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveAnalyticsResponseDRF'
          description: ''
  /api/extensions/v1beta/user/assign:
    post:
      operationId: api_extensions_v1beta_user_assign_create_[assign_managers_to_users]
      summary: Assign Managers To Users
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignManagersToUsersRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AssignManagersToUsersRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AssignManagersToUsersRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssignUsersResponseDRF'
          description: ''
  /api/extensions/v1beta/user/labels:
    post:
      operationId: api_extensions_v1beta_user_labels_create_[assign_labels_to_users]
      summary: Assign Labels To Users
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUsersRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUsersRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AssignLabelsToUsersRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListIdResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/move/users:
    get:
      operationId: api_extensions_v1beta_user_move_users_retrieve_[retrieve_moved_users]
      description: 'Retrieve moved users

        Retrieve a list of users who have been moved between deployments.'
      summary: Retrieve Moved Users
      parameters:
      - in: query
        name: deploymentId
        schema:
          type: string
        required: true
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveProfilesResponseObjectDRF'
          description: ''
  /api/extensions/v1beta/user/offboard:
    post:
      operationId: api_extensions_v1beta_user_offboard_create_[offboard_users]
      summary: Offboard Users
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OffBoardUsersRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/OffBoardUsersRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/OffBoardUsersRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OffboardUsersResponseDRF'
          description: ''
  /api/extensions/v1beta/user/profiles/assigned:
    get:
      operationId: api_extensions_v1beta_user_profiles_assigned_retrieve_[retrieve_profiles_with_assigned_manager]
      summary: Retrieve Profiles With Assigned Manager
      tags:
      - User Deprecated
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserDTODRF'
          description: ''
  /api/extensions/v1beta/user/reactivate:
    post:
      operationId: api_extensions_v1beta_user_reactivate_create_[reactivate_users]
      summary: Reactivate Users
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReactivateUsersRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ReactivateUsersRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ReactivateUsersRequestDataDRF'
        required: true
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReactivateUsersResponseDRF'
          description: ''
  /api/extensions/v1beta/user/staff:
    post:
      operationId: api_extensions_v1beta_user_staff_create_[retrieve_staff_list]
      summary: Retrieve Staff List
      tags:
      - User Deprecated
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RetrieveStaffRequestDataDRF'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/RetrieveStaffRequestDataDRF'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/RetrieveStaffRequestDataDRF'
      security:
      - JWT Auth: []
      - Hawk Auth: []
      - jwtAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserDTODRF'
          description: ''
components:
  schemas:
    ExtraDRF:
      type: object
      properties:
        sortPrimitiveName:
          type: string
        moduleId:
          type: string
        moduleConfigId:
          type: string
      required:
      - moduleConfigId
      - moduleId
    OffBoardingReasonsDRF:
      type: object
      properties:
        reasons:
          type: array
          items:
            $ref: '#/components/schemas/ReasonDRF'
        otherReason:
          type: boolean
    UIWidgetDRF:
      type: object
      properties:
        order:
          type: integer
        enabled:
          type: boolean
        config:
          type: object
          additionalProperties: {}
        type:
          type: string
        id:
          type: string
      required:
      - config
      - order
      - type
    OrganizationDTODRF:
      type: object
      properties:
        termAndConditionUrl:
          type: string
        privacyPolicyUrl:
          type: string
        eulaUrl:
          type: string
        privacyPolicyObject:
          $ref: '#/components/schemas/S3ObjectDRF'
        termAndConditionObject:
          $ref: '#/components/schemas/S3ObjectDRF'
        eulaObject:
       

# --- truncated at 32 KB (107 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/huma/refs/heads/main/openapi/huma-user-deprecated-api-openapi.yml