PATCH
/
unified
/
iam
/
users
/
{id}
curl --request PATCH \
  --url https://api.stackone.com/unified/iam/users/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --data '{
  "primary_email_address": "han@stackone.com",
  "first_name": "Han",
  "last_name": "Solo",
  "name": "Han Solo",
  "username": "hansolo1977",
  "is_bot_user": true,
  "status": {
    "value": "enabled",
    "source_value": "<string>"
  },
  "passthrough": {
    "other_known_names": "John Doe"
  }
}'
{
  "statusCode": 200,
  "message": "Record updated successfully.",
  "timestamp": "2021-01-01T01:01:01.000Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

x-account-id
string
required

The account identifier

Path Parameters

id
string
required

Body

application/json
primary_email_address
string | null

Primary email address of the user. This is generally a work email address.

Example:

"han@stackone.com"

first_name
string | null
Example:

"Han"

last_name
string | null
Example:

"Solo"

name
string | null

User's name which (can be a full name or display name)

Example:

"Han Solo"

username
string | null
Example:

"hansolo1977"

is_bot_user

Indicates if the user is a bot or service user

Example:

true

status
object
passthrough
object | null

Value to pass through to the provider

Example:
{ "other_known_names": "John Doe" }

Response

200
application/json
Record updated successfully.
statusCode
number
required
Example:

200

message
string
required
Example:

"Record updated successfully."

timestamp
string
required
Example:

"2021-01-01T01:01:01.000Z"