# put\_\_organization\_users\_{userId}

`PUT /organization/users/{userId}`

*Update Organization User*

Update user information in the authenticated user's organization. This endpoint requires user management permissions (WORKSPACES role or higher) and both users must be in the same organization. Only the fields provided in the request body will be updated.

#### Path Parameters <a href="#put__organization_users__userid-pathparameters" id="put__organization_users__userid-pathparameters"></a>

| Name     | Type   | Required | Description                             |
| -------- | ------ | -------- | --------------------------------------- |
| » userId | string | true     | Unique identifier of the user to update |

#### Request Body <a href="#put__organization_users__userid-requestbody" id="put__organization_users__userid-requestbody"></a>

| Name       | Type    | Required | Restrictions | Description                          |
| ---------- | ------- | -------- | ------------ | ------------------------------------ |
| » name     | string  | false    | none         | User's first name                    |
| » lastName | string  | false    | none         | User's last name                     |
| » orgRole  | integer | false    | none         | User's organization role (0x00-0xff) |

#### TypeScript Client Library

```typescript
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';

const client = new FlashbackClient({
  accessToken: 'your-access-token'
});

// Update an organization user
try {
  const result = await client.organization.users.update('user-id', {
    name: 'Updated',
    lastName: 'Name',
    orgRole: 1
  });
  console.log('User updated:', result);
} catch (error) {
  console.error('Failed to update user:', error);
}
```

#### Code Samples

{% tabs %}
{% tab title="Shell" %}

```shell
# You can also use wget
curl -X PUT https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000 \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer {access-token}' \
  -d '{
    "name": "Updated",
    "lastName": "Name",
    "orgRole": 1
  }'
```

{% endtab %}

{% tab title="HTTP" %}

```http
PUT https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000 HTTP/1.1
Host: localhost:3000
Accept: application/json
Content-Type: application/json
Authorization: Bearer {access-token}

{
  "name": "Updated",
  "lastName": "Name",
  "orgRole": 1
}
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const headers = {
  'Accept':'application/json',
  'Content-Type':'application/json',
  'Authorization':'Bearer {access-token}'
};

const body = {
  name: "Updated",
  lastName: "Name",
  orgRole: 1
};

fetch('https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000',
{
  method: 'PUT',
  headers: headers,
  body: JSON.stringify(body)
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
```

{% endtab %}

{% tab title="Ruby" %}

```ruby
require 'rest-client'
require 'json'

headers = {
  'Accept' => 'application/json',
  'Content-Type' => 'application/json',
  'Authorization' => 'Bearer {access-token}'
}

body = {
  name: "Updated",
  lastName: "Name",
  orgRole: 1
}

result = RestClient.put 'https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000',
  body.to_json, headers: headers

p JSON.parse(result)
```

{% endtab %}

{% tab title="Python" %}

```python
import requests
import json

headers = {
  'Accept': 'application/json',
  'Content-Type': 'application/json',
  'Authorization': 'Bearer {access-token}'
}

body = {
  "name": "Updated",
  "lastName": "Name",
  "orgRole": 1
}

r = requests.put('https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000', 
                 headers=headers, 
                 data=json.dumps(body))

print(r.json())
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

require 'vendor/autoload.php';

$headers = array(
    'Accept' => 'application/json',
    'Content-Type' => 'application/json',
    'Authorization' => 'Bearer {access-token}',
);

$body = array(
    'name' => 'Updated',
    'lastName' => 'Name',
    'orgRole' => 1
);

$client = new \GuzzleHttp\Client();

try {
    $response = $client->request('PUT','https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000', array(
        'headers' => $headers,
        'json' => $body
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

```

{% endtab %}

{% tab title="Java" %}

```java
URL obj = new URL("https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PUT");
con.setRequestProperty("Accept", "application/json");
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Authorization", "Bearer {access-token}");
con.setDoOutput(true);

String jsonInputString = "{\"name\":\"Updated\",\"lastName\":\"Name\",\"orgRole\":1}";

try(OutputStream os = con.getOutputStream()) {
    byte[] input = jsonInputString.getBytes("utf-8");
    os.write(input, 0, input.length);
}

int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());
```

{% endtab %}

{% tab title="Go" %}

```go
package main

import (
       "bytes"
       "encoding/json"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
        "Content-Type": []string{"application/json"},
        "Authorization": []string{"Bearer {access-token}"},
    }

    body := map[string]interface{}{
        "name": "Updated",
        "lastName": "Name",
        "orgRole": 1,
    }

    jsonBody, _ := json.Marshal(body)
    data := bytes.NewBuffer(jsonBody)
    req, err := http.NewRequest("PUT", "https://backend.flashback.tech/organization/users/550e8400-e29b-41d4-a716-446655440000", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}
```

{% endtab %}
{% endtabs %}

> Example responses

> 200 Response

```json
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "email": "john.doe@example.com",
    "name": "Updated",
    "lastName": "Name",
    "orgId": "123e4567-e89b-12d3-a456-426614174000",
    "orgRole": 1,
    "validated": true,
    "deletedAt": null,
    "orgRoleDescription": "BILLING",
    "orgRoles": [0, 1]
  },
  "message": "User updated successfully"
}
```

> 400 Response

```json
{
  "success": false,
  "data": {},
  "message": "Invalid role combination"
}
```

> 403 Response

```json
{
  "success": false,
  "data": {},
  "message": "Insufficient permissions to update users"
}
```

> 404 Response

```json
{
  "success": false,
  "data": {},
  "message": "User not found"
}
```

> 500 Response

```json
{
  "success": false,
  "data": {},
  "message": "Internal server error"
}
```

#### Responses <a href="#put__organization_users__userid-responses" id="put__organization_users__userid-responses"></a>

| Status | Meaning                                                                    | Description                                                | Schema |
| ------ | -------------------------------------------------------------------------- | ---------------------------------------------------------- | ------ |
| 200    | [OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)                    | User updated successfully                                  | Inline |
| 400    | [Bad Request](https://tools.ietf.org/html/rfc7231#section-6.5.1)           | Invalid input data or role combination                     | Inline |
| 403    | [Forbidden](https://tools.ietf.org/html/rfc7235#section-3.3)               | Insufficient permissions or users not in same organization | Inline |
| 404    | [Not Found](https://tools.ietf.org/html/rfc7231#section-6.5.4)             | User not found                                             | Inline |
| 500    | [Internal Server Error](https://tools.ietf.org/html/rfc7231#section-6.6.1) | Internal server error                                      | Inline |

#### Response Schema <a href="#put__organization_users__userid-responseschema" id="put__organization_users__userid-responseschema"></a>

Status Code **200**

| Name                  | Type               | Required | Restrictions | Description                             |
| --------------------- | ------------------ | -------- | ------------ | --------------------------------------- |
| » success             | boolean            | false    | none         | Indicates if the request was successful |
| » data                | object             | false    | none         | Updated user data                       |
| »» id                 | string             | false    | none         | Unique identifier for the user          |
| »» email              | string             | false    | none         | User's email address                    |
| »» name               | string             | false    | none         | User's first name                       |
| »» lastName           | string             | false    | none         | User's last name                        |
| »» orgId              | string             | false    | none         | Organization identifier                 |
| »» orgRole            | integer            | false    | none         | User's organization role (0x00-0xff)    |
| »» validated          | boolean            | false    | none         | Whether the user's email is validated   |
| »» deletedAt          | string (date-time) | false    | none         | Deletion timestamp (null if active)     |
| »» orgRoleDescription | string             | false    | none         | Human-readable role description         |
| »» orgRoles           | \[integer]         | false    | none         | Array of available roles for the user   |
| » message             | string             | false    | none         | Success message                         |

Status Code **400**

| Name      | Type    | Required | Restrictions | Description                                   |
| --------- | ------- | -------- | ------------ | --------------------------------------------- |
| » success | boolean | false    | none         | Indicates if the request was successful       |
| » data    | object  | false    | none         | Empty object (no user data)                   |
| » message | string  | false    | none         | Error message describing the validation issue |

Status Code **403**

| Name      | Type    | Required | Restrictions | Description                                   |
| --------- | ------- | -------- | ------------ | --------------------------------------------- |
| » success | boolean | false    | none         | Indicates if the request was successful       |
| » data    | object  | false    | none         | Empty object (no user data)                   |
| » message | string  | false    | none         | Error message describing the permission issue |

Status Code **404**

| Name      | Type    | Required | Restrictions | Description                             |
| --------- | ------- | -------- | ------------ | --------------------------------------- |
| » success | boolean | false    | none         | Indicates if the request was successful |
| » data    | object  | false    | none         | Empty object (no user data)             |
| » message | string  | false    | none         | Error message describing the issue      |

Status Code **500**

| Name      | Type    | Required | Restrictions | Description                               |
| --------- | ------- | -------- | ------------ | ----------------------------------------- |
| » success | boolean | false    | none         | Indicates if the request was successful   |
| » data    | object  | false    | none         | Empty object (no user data)               |
| » message | string  | false    | none         | Error message describing the server issue |

**Enumerated Values**

| Parameter | Value | Description                                         |
| --------- | ----- | --------------------------------------------------- |
| » orgRole | 0x00  | USER - Default role with basic access               |
| » orgRole | 0x01  | BILLING - Can manage billing and subscriptions      |
| » orgRole | 0x02  | WORKSPACES - Can manage workspaces and team members |
| » orgRole | 0xfe  | ADMINISTRATOR - Administrative access               |
| » orgRole | 0xff  | OWNER - Full organization access                    |

#### Security

* **BearerAuth**: Bearer token authentication required
* **Permissions**: Requires WORKSPACES role or higher to access user management functions
* **Organization Access**: Both users must be in the same organization
* **Role Modification**: Current user must have sufficient permissions to modify the target user's role

#### Notes

* Only the fields provided in the request body will be updated
* Role changes are subject to permission checks - users can only assign roles they have permission to manage
* Email addresses cannot be changed through this endpoint
* The `validated` and `deletedAt` fields are managed by the system and cannot be modified


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flashback.tech/support-reference/platform-api-reference/organization/put__organization_users_-userid.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
