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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/huma-user-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
openapi: 3.2.0
info:
title: Huma Platform User 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
paths:
/api/auth/v1/private/user/{user_id}/delete-user:
delete:
operationId: api_auth_v1_private_user_delete_user_destroy_[delete_user]
description: 'Delete user
Remove user from the system along with all related data.'
summary: Delete User
parameters:
- in: path
name: user_id
schema:
type: string
pattern: ^[a-f0-9]{24}$
required: true
tags:
- User
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses: {}
/api/extensions/v1/user/{user_id}:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/UserDTODRF'
description: ''
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/add-role:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/assign-proxy:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/clear/fields:
put:
operationId: api_extensions_v1_user_clear_fields_update_[clear_user_profile_data]
description: 'Deletes user profile data.
Usage: add desired field name
to ClearUserProfileDataRequestObject._fieldsAllowedToRemove'
summary: Clear User Profile Data
parameters:
- in: path
name: user_id
schema:
type: string
pattern: ^[a-f0-9]{24}$
required: true
tags:
- User
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ClearUserProfileDataRequestDataDRF'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ClearUserProfileDataRequestDataDRF'
multipart/form-data:
schema:
$ref: '#/components/schemas/ClearUserProfileDataRequestDataDRF'
required: true
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ResultIdResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/configuration:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/RetrieveDeploymentConfigResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/consent/{consent_id}/sign:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/deployment/{deployment_id}/helperagreementlog:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/deployment/{deployment_id}/note/{note_id}:
get:
operationId: api_extensions_v1_user_deployment_note_retrieve_[retrieve_single_user_note]
description: 'Retrieve user note
Retrieve a specific note for a user within a deployment.'
summary: Retrieve Single User Note
parameters:
- in: path
name: deployment_id
schema:
type: string
pattern: ^[a-f0-9]{24}$
required: true
- in: path
name: note_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/UserNoteDTODRF'
description: ''
/api/extensions/v1/user/{user_id}/deployment/{deployment_id}/thumbnail-notes:
get:
operationId: api_extensions_v1_user_deployment_thumbnail_notes_retrieve_[retrieve_user_thumbnail_notes]
description: 'Retrieve user thumbnail notes
Retrieve thumbnail previews of notes for a user within a deployment.'
summary: Retrieve User Thumbnail Notes
parameters:
- in: query
name: deploymentId
schema:
type: string
required: true
- in: path
name: deployment_id
schema:
type: string
pattern: ^[a-f0-9]{24}$
required: true
- in: query
name: endDateTime
schema:
type: string
format: date-time
- in: query
name: startDateTime
schema:
type: string
format: date-time
- in: query
name: userId
schema:
type: string
required: true
- in: path
name: user_id
schema:
type: string
pattern: ^[a-f0-9]{24}$
required: true
tags:
- User
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/UserNoteDTODRF'
description: ''
/api/extensions/v1/user/{user_id}/document:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PersonalDocumentDRF'
description: ''
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/document/{document_id}:
delete:
operationId: api_extensions_v1_user_document_destroy_[delete_personal_document]
description: 'Delete personal document
Delete a specific personal document of a user.'
summary: Delete Personal Document
parameters:
- in: path
name: document_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'204':
description: No response body
/api/extensions/v1/user/{user_id}/econsent/{econsent_id}:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EConsentDRF'
description: ''
post:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ResultIdResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/econsent/{econsent_id}/pdf:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EConsentLogDTODRF'
description: ''
/api/extensions/v1/user/{user_id}/econsent/{econsent_id}/sign:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/econsent/{econsent_id}/withdraw:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/fullconfiguration:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/RetrieveFullConfigurationResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/labels:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/move/{target_deployment_id}:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/move/ack/{acknowledge_id}:
put:
operationId: api_extensions_v1_user_move_ack_update_[acknowledge_move]
description: 'Acknowledge move user
Acknowledge the user''s move to a new deployment.'
summary: Acknowledge Move
parameters:
- in: path
name: acknowledge_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ResultIdResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/move/history:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/RetrieveMoveUserHistoryResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/offboard:
post:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ResultIdResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/profiles/assigned:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/UserDTODRF'
description: ''
/api/extensions/v1/user/{user_id}/proxy-invitations:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/RetrieveProxyInvitationsResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/reactivate:
post:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ResultIdResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/remove-role:
post:
operationId: api_extensions_v1_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
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/v1/user/{user_id}/resources:
get:
operationId: api_extensions_v1_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
security:
- JWT Auth: []
- Hawk Auth: []
- jwtAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/RetrieveUserResourcesResponseObjectDRF'
description: ''
/api/extensions/v1/user/{user_id}/unassign-proxy:
post:
operationId: api_extensions_v1_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
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/v1/user/add-role:
post:
operationId: api_extensions_v1_user_add_role_create_[add_roles_to_users]
summary: Add Roles To Users
tags:
- User
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/v1/user/analytics:
post:
operationId: api_extensions_v1_user_analytics_create_[retrieve_analytics_url]
summary: Retrieve Analytics Url
tags:
- User
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/v1/user/assign:
post:
operationId: api_extensions_v1_user_assign_create_[assign_managers_to_users]
summary: Assign Managers To Users
tags:
- User
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/v1/user/labels:
post:
operationId: api_extensions_v1_user_labels_create_[assign_labels_to_users]
summary: Assign Labels To Users
tags:
- User
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:
# --- truncated at 32 KB (120 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/huma/refs/heads/main/openapi/huma-user-api-openapi.yml