Skip to main content
PUT
/
api
/
account
/
me
cURL
curl --request PUT \
  --url http://localhost/api/account/me \
  --header 'Content-Type: application/json' \
  --data '{
  "uuid": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "updatedOn": "2023-11-07T05:31:56Z",
  "changeSequence": 123,
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "bio": "<string>",
  "userStorage": {
    "favoriteLinks": [
      {
        "link": "<string>"
      }
    ]
  },
  "showDeveloperTools": true,
  "userHash": "<string>",
  "acceptedTerms": true,
  "userType": "HUMAN",
  "active": true,
  "externallyManaged": true,
  "hasAcceptedTerms": true,
  "id": "<string>",
  "security": {
    "roles": [
      "PLATFORM_ADMIN"
    ]
  },
  "preferences": {
    "showWelcomeMessage": true,
    "showOnboarding": true,
    "showScrollbars": true
  }
}'
{
  "uuid": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "updatedOn": "2023-11-07T05:31:56Z",
  "changeSequence": 123,
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "bio": "<string>",
  "userStorage": {
    "favoriteLinks": [
      {
        "link": "<string>"
      }
    ]
  },
  "showDeveloperTools": true,
  "image": "<string>",
  "userHash": "<string>",
  "acceptedTerms": true,
  "userType": "HUMAN",
  "active": true,
  "fullName": "<string>",
  "externallyManaged": true,
  "hasAcceptedTerms": true,
  "id": "<string>",
  "security": {
    "roles": [
      "PLATFORM_ADMIN"
    ]
  },
  "preferences": {
    "showWelcomeMessage": true,
    "showOnboarding": true,
    "showScrollbars": true
  }
}

Body

application/json

A user of the Kodexa Platform

email
string
required

Email address of the user

uuid
string

The UUID of the object

createdOn
string<date-time>
updatedOn
string<date-time>
changeSequence
integer

The change sequence of the object, which can be used to track modications

firstName
string

First name of the user

lastName
string

Last name of the user

bio
string

About the user

userStorage
object

Metadata storage for the user

showDeveloperTools
boolean

Show developer tools in the UI

userHash
string
acceptedTerms
boolean
userType
enum<string>
Available options:
HUMAN,
ASSISTANT,
SERVICE
active
boolean

Flag to indicate if the user is active

externallyManaged
boolean
hasAcceptedTerms
boolean

Flag to indicate if the user has accepted the terms of service

id
string

The ID of the object

security
object
preferences
object

Response

OK

A user of the Kodexa Platform

email
string
required

Email address of the user

uuid
string

The UUID of the object

createdOn
string<date-time>
updatedOn
string<date-time>
changeSequence
integer

The change sequence of the object, which can be used to track modications

firstName
string

First name of the user

lastName
string

Last name of the user

bio
string

About the user

userStorage
object

Metadata storage for the user

showDeveloperTools
boolean

Show developer tools in the UI

image
string

Link to user image

userHash
string
acceptedTerms
boolean
userType
enum<string>
Available options:
HUMAN,
ASSISTANT,
SERVICE
active
boolean

Flag to indicate if the user is active

fullName
string

Full name of the user

externallyManaged
boolean
hasAcceptedTerms
boolean

Flag to indicate if the user has accepted the terms of service

id
string

The ID of the object

security
object
preferences
object
I