TA V2 DEV
  1. Users
TA V2 DEV
  • Health
    • /health/
      GET
  • Authentication
    • Register a new user
      POST
    • Login user
      POST
    • /auth/registration
      POST
    • Activate user account
      POST
    • Refresh access token
      POST
    • Change password
      POST
    • Get current user
      GET
  • Users
    • List all users
      GET
    • Get user by ID
      GET
    • Update user
      PATCH
    • Delete user (soft delete)
      DELETE
    • Get users by organization
      GET
    • Restore deleted user
      POST
    • Delete multiple users
      POST
  • Organizations
    • List all organizations
      GET
    • Search organizations
      GET
    • Get organization by ID
      GET
    • Update organization
      PATCH
    • Delete organization (soft delete with cascade)
      DELETE
    • Get organization statistics
      GET
    • Restore deleted organization
      POST
  • getHealth
    GET
  • getIndex
    GET
  1. Users

Delete user (soft delete)

DELETE
/users/{id}
Maintainer:Not configured
Soft-delete a user. The user will be hidden from queries but data is preserved and can be restored.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'http://68.219.186.115:3003/users/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-11-21 15:10:20
Previous
Update user
Next
Get users by organization
Built with