TA V2 DEV
  1. Organizations
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. Organizations

Update organization

PATCH
/organizations/{id}
Maintainer:Not configured
Update organization details. All fields are optional.

Request

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

Body Params application/x-www-form-urlencoded

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 PATCH 'http://68.219.186.115:3003/organizations/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-11-21 15:10:20
Previous
Get organization by ID
Next
Delete organization (soft delete with cascade)
Built with