Flowable Users API

The Users API from Flowable — 20 operation(s) for users.

Operations 31

GET /identity/users List users #
POST /identity/users Create a user #
GET /identity/users/{userId} Get a single user #
PUT /identity/users/{userId} Update a user #
DELETE /identity/users/{userId} Delete a user #
GET /identity/users/{userId}/info List user’s info #
POST /identity/users/{userId}/info Create a new user’s info entry #
GET /identity/users/{userId}/info/{key} Get a user’s info #
PUT /identity/users/{userId}/info/{key} Update a user’s info #
DELETE /identity/users/{userId}/info/{key} Delete a user’s info #
GET /identity/users/{userId}/picture Get a user’s picture #
PUT /identity/users/{userId}/picture Updating a user’s picture #
POST /query/users Query users #
GET /users List users #
POST /users Create a user #
GET /users/{userId} Get a single user #
PUT /users/{userId} Update a user #
DELETE /users/{userId} Delete a user #
GET /users/{userId}/avatar/data Get an user avatar #
POST /users/{userId}/avatar/data Updates a user avatar #
GET /users/{userId}/avatar/thumbnail Get an user avatar thumbnail #
PUT /users/{userId}/change-language Change user language #
PUT /users/{userId}/change-password Change user password #
PUT /users/{userId}/change-theme Change user theme #
DELETE /users/{userId}/identity-info/{identityInfoName} Delete a user identity info #
GET /users/{userId}/index-document Get user from ElasticSearch #
GET /users/{userId}/name Get a single user name information #
PUT /users/{userId}/presence Update presence #
PUT /users/{userId}/update-state Update a user state and sub state #
PUT /users/{userId}/update-user-definition Update a user definition #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/flowable-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

flowable-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# flowable / flowəb(ə)l /


    - a compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.

    - a lightning fast, tried and tested BPMN 2 process engine written in Java. It is Apache 2.0 licensed open source, with a committed community.

    - can run embedded in a Java application, or as a service on a server, a cluster, and in the cloud. It integrates perfectly with Spring. With a rich Java and REST API, it is the ideal engine for orchestrating human or system activities.'
  version: v1
  title: Flowable REST Access Tokens Users API
  contact:
    name: Flowable
    url: http://www.flowable.org/
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: /flowable-rest/service
tags:
- name: Users
paths:
  /identity/users:
    get:
      tags:
      - Users
      summary: List users
      description: ''
      operationId: listUsers
      parameters:
      - name: id
        in: query
        description: Only return group with the given id
        required: false
        schema:
          type: string
      - name: firstName
        in: query
        description: Only return users with the given firstname
        required: false
        schema:
          type: string
      - name: lastName
        in: query
        description: Only return users with the given lastname
        required: false
        schema:
          type: string
      - name: displayName
        in: query
        description: Only return users with the given displayName
        required: false
        schema:
          type: string
      - name: email
        in: query
        description: Only return users with the given email
        required: false
        schema:
          type: string
      - name: firstNameLike
        in: query
        description: Only return userswith a firstname like the given value. Use % as wildcard-character.
        required: false
        schema:
          type: string
      - name: lastNameLike
        in: query
        description: Only return users with a lastname like the given value. Use % as wildcard-character.
        required: false
        schema:
          type: string
      - name: displayNameLike
        in: query
        description: Only return users with a displayName like the given value. Use % as wildcard-character.
        required: false
        schema:
          type: string
      - name: emailLike
        in: query
        description: Only return users with an email like the given value. Use % as wildcard-character.
        required: false
        schema:
          type: string
      - name: memberOfGroup
        in: query
        description: Only return users which are a member of the given group.
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return users which are a members of the given tenant.
        required: false
        schema:
          type: string
      - name: potentialStarter
        in: query
        description: Only return users  which members are potential starters for a process-definition with the given id.
        required: false
        schema:
          type: string
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - firstName
          - lastname
          - email
          - displayName
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates the group exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseUserResponse'
      security:
      - basicAuth: []
    post:
      tags:
      - Users
      summary: Create a user
      description: ''
      operationId: createUser
      requestBody:
        $ref: '#/components/requestBodies/UserRequest'
      responses:
        '201':
          description: Indicates the user was created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserResponse'
        '400':
          description: Indicates the id of the user was missing.
      security:
      - basicAuth: []
  /identity/users/{userId}:
    get:
      tags:
      - Users
      summary: Get a single user
      description: ''
      operationId: getUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the user exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserResponse'
        '404':
          description: Indicates the requested user does not exist.
      security:
      - basicAuth: []
    put:
      tags:
      - Users
      summary: Update a user
      description: 'All request values are optional. For example, you can only include the firstName attribute in the request body JSON-object, only updating the firstName of the user, leaving all other fields unaffected. When an attribute is explicitly included and is set to null, the user-value will be updated to null. Example: {"firstName" : null} will clear the firstName of the user).'
      operationId: updateUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/UserRequest'
      responses:
        '200':
          description: Indicates the user was updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserResponse'
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
    delete:
      tags:
      - Users
      summary: Delete a user
      description: ''
      operationId: deleteUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the user was found and  has been deleted. Response-body is intentionally empty.
        '404':
          description: Indicates the requested user was not found.
      security:
      - basicAuth: []
  /identity/users/{userId}/info:
    get:
      tags:
      - Users
      summary: List user’s info
      description: ''
      operationId: listUserInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the user was found and list of info (key and url) is returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserInfoResponse'
        '404':
          description: Indicates the requested user was not found.
      security:
      - basicAuth: []
    post:
      tags:
      - Users
      summary: Create a new user’s info entry
      description: ''
      operationId: createUserInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/UserInfoRequest'
      responses:
        '201':
          description: Indicates the user was found and the info has been created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfoResponse'
        '400':
          description: Indicates the key or value was missing from the request body. Status description contains additional information about the error.
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates there is already an info-entry with the given key for the user, update the resource instance (PUT).
      security:
      - basicAuth: []
  /identity/users/{userId}/info/{key}:
    get:
      tags:
      - Users
      summary: Get a user’s info
      description: ''
      operationId: getUserInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the user was found and the user has info for the given key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfoResponse'
        '404':
          description: Indicates the requested user was not found or the user does ot have info for the given key. Status description contains additional information about the error.
      security:
      - basicAuth: []
    put:
      tags:
      - Users
      summary: Update a user’s info
      description: ''
      operationId: updateUserInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/UserInfoRequest'
      responses:
        '200':
          description: Indicates the user was found and the info has been updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfoResponse'
        '400':
          description: Indicates the value was missing from the request body.
        '404':
          description: Indicates the requested user was not found or the user does not have info for the given key. Status description contains additional information about the error.
      security:
      - basicAuth: []
    delete:
      tags:
      - Users
      summary: Delete a user’s info
      description: ''
      operationId: deleteUserInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the user was found and the info for the given key has been deleted. Response body is left empty intentionally.
        '404':
          description: Indicates the requested user was not found or the user does not have info for the given key. Status description contains additional information about the error.
      security:
      - basicAuth: []
  /identity/users/{userId}/picture:
    get:
      tags:
      - Users
      summary: Get a user’s picture
      description: The response body contains the raw picture data, representing the user’s picture. The Content-type of the response corresponds to the mimeType that was set when creating the picture.
      operationId: getUserPicture
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the user was found and has a picture, which is returned in the body.
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
                  format: byte
        '404':
          description: Indicates the requested user was not found or the user does not have a profile picture. Status-description contains additional information about the error.
      security:
      - basicAuth: []
    put:
      tags:
      - Users
      summary: Updating a user’s picture
      description: 'The request should be of type multipart/form-data. There should be a single file-part included with the binary value of the picture. On top of that, the following additional form-fields can be present:


        mimeType: Optional mime-type for the uploaded picture. If omitted, the default of image/jpeg is used as a mime-type for the picture.'
      operationId: updateUserPicture
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  description: Picture to update
                  type: string
                  format: binary
              required:
              - file
        required: true
      responses:
        '204':
          description: Indicates the user was found and the picture has been updated. The response-body is left empty intentionally.
        '404':
          description: Indicates the requested user was not found.
      security:
      - basicAuth: []
  /query/users:
    post:
      tags:
      - Users
      summary: Query users
      description: ''
      operationId: queryUsers
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserBodyQueryRequest'
        description: User request
      responses:
        '200':
          description: Indicates the request was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponsePlatformUserResponse'
        '400':
          description: Indicates the request body is incomplete or contains illegal values.
        '403':
          description: Indicates the user does not have the rights to view the users.
      security:
      - basicAuth: []
  /search/query-users:
    get:
      tags:
      - Users
      summary: Search a user
      description: ''
      operationId: Search a user index
      parameters:
      - name: displayName
        in: query
        description: displayName filter to return results for.
        required: false
        schema:
          type: string
      - name: email
        in: query
        description: email filter to return results for.
        required: false
        schema:
          type: string
      - name: firstName
        in: query
        description: firstName filter to return results for.
        required: false
        schema:
          type: string
      - name: id
        in: query
        description: id filter to return results for.
        required: false
        schema:
          type: string
      - name: lastName
        in: query
        description: lastName filter to return results for.
        required: false
        schema:
          type: string
      - name: order
        in: query
        description: From the paginate request.  The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: size
        in: query
        description: From the paginate request. Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
          format: int32
      - name: sort
        in: query
        description: Property to sort the results on
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: From the paginate request. Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
          format: int32
      - name: state
        in: query
        description: state filter to return results for.
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: tenantId filter to return results for.
        required: false
        schema:
          type: string
      - name: type
        in: query
        description: type filter to return results for.
        required: false
        schema:
          type: string
      - name: userDefinitionKey
        in: query
        description: userDefinitionKey filter to return results for.
        required: false
        schema:
          type: string
      - name: userDefinitionName
        in: query
        description: userDefinitionName filter to return results for.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Indicates the request was successful.
        '201':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponsePlatformUserResponse'
        '400':
          description: Indicates the request body is incomplete or contains illegal values.
        '403':
          description: Indicates the user does not have the rights to view the users.
      security:
      - basicAuth: []
  /users:
    get:
      tags:
      - Users
      summary: List users
      description: ''
      operationId: listUsers
      parameters:
      - name: order
        in: query
        description: From the paginate request.  The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: size
        in: query
        description: From the paginate request. Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
          format: int32
      - name: sort
        in: query
        description: Property to sort the results on
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: From the paginate request. Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
          format: int32
      - name: state
        in: query
        description: Only return users with a state like the given value.
        required: false
        schema:
          type: string
      - name: subState
        in: query
        description: Only return users with a sub state like the given value.
        required: false
        schema:
          type: string
      - name: memberOfGroup
        in: query
        description: Only return users which are a member of the given group.
        required: false
        schema:
          type: string
      - name: memberOfGroupKey
        in: query
        description: Only return users which are a member of the group with the given key.
        required: false
        schema:
          type: string
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - firstName
          - lastname
          - email
          - displayName
      responses:
        '200':
          description: Indicates the request was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponsePlatformUserResponse'
        '400':
          description: Indicates the request body is incomplete or contains illegal values.
        '403':
          description: Indicates the user does not have the rights to view the users.
      security:
      - basicAuth: []
    post:
      tags:
      - Users
      summary: Create a user
      description: ''
      operationId: createUser
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUserRequest'
      responses:
        '201':
          description: Indicates the user was created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '400':
          description: Indicates the id of the user was missing.
      security:
      - basicAuth: []
  /users/{userId}:
    get:
      tags:
      - Users
      summary: Get a single user
      description: ''
      operationId: getUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: includeIdentityInfo
        in: query
        required: false
        schema:
          type: boolean
      - name: includeGroupInfo
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Indicates the user exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '404':
          description: Indicates the requested user does not exist.
      security:
      - basicAuth: []
    put:
      tags:
      - Users
      summary: Update a user
      description: 'All request values are optional. For example, you can only include the firstName attribute in the request body JSON-object, only updating the firstName of the user, leaving all other fields unaffected. When an attribute is explicitly included and is set to null, the user-value will be updated to null. Example: {"firstName" : null} will clear the firstName of the user).'
      operationId: updateUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserRequest'
      responses:
        '200':
          description: Indicates the user was updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
    delete:
      tags:
      - Users
      summary: Delete a user
      description: ''
      operationId: deleteUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the user was found and  has been deleted. Response-body is intentionally empty.
        '404':
          description: Indicates the requested user was not found.
      security:
      - basicAuth: []
  /users/{userId}/avatar/data:
    get:
      tags:
      - Users
      summary: Get an user avatar
      description: ''
      operationId: getUserAvatar
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: download
        in: query
        description: Explicitly request the content to be downloaded or viewed in a browser. By default it would be done based on the content media type
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Indicates the avatar exists and is returned.
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Resource'
        '404':
          description: Indicates the requested avatar does not exist.
      security:
      - basicAuth: []
    post:
      tags:
      - Users
      summary: Updates a user avatar
      description: ''
      operationId: updateUserAvatar
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the avatar exists and is returned.
        '404':
          description: Indicates the requested avatar does not exist.
      security:
      - basicAuth: []
  /users/{userId}/avatar/thumbnail:
    get:
      tags:
      - Users
      summary: Get an user avatar thumbnail
      description: ''
      operationId: getUserAvatarThumbnail
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: download
        in: query
        description: Explicitly request the content to be downloaded or viewed in a browser. By default it would be done based on the content media type
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Indicates the avatar exists and is returned.
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Resource'
        '404':
          description: Indicates the requested avatar does not exist.
      security:
      - basicAuth: []
  /users/{userId}/change-language:
    put:
      tags:
      - Users
      summary: Change user language
      description: ''
      operationId: changeUserLanguage
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeUserLanguageRequest'
      responses:
        '200':
          description: Indicates the user language was updated.
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
  /users/{userId}/change-password:
    put:
      tags:
      - Users
      summary: Change user password
      description: ''
      operationId: changeUserPassword
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeUserPasswordRequest'
      responses:
        '200':
          description: Indicates the user password was updated.
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
  /users/{userId}/change-theme:
    put:
      tags:
      - Users
      summary: Change user theme
      description: ''
      operationId: changeUserTheme
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeUserThemeRequest'
      responses:
        '204':
          description: Indicates the user theme was updated.
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
  /users/{userId}/identity-info/{identityInfoName}:
    delete:
      tags:
      - Users
      summary: Delete a user identity info
      description: ''
      operationId: deleteUserIdentityInfo
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: identityInfoName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the identity info was found and the identity info has been deleted. Returns updated user.
        '204':
          description: successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '404':
          description: Indicates the requested identity info was not found.
      security:
      - basicAuth: []
  /users/{userId}/index-document:
    get:
      tags:
      - Users
      summary: Get user from ElasticSearch
      description: ''
      operationId: getUserDocument
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates that the user was found in the ElasticSearch index.
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/JsonNode'
        '404':
          description: Indicates that the user was not found in the ElasticSearch index.
      security:
      - basicAuth: []
  /users/{userId}/name:
    get:
      tags:
      - Users
      summary: Get a single user name information
      description: ''
      operationId: getUserName
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the user exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserBaseInformationResponse'
        '404':
          description: Indicates the requested user does not exist.
      security:
      - basicAuth: []
  /users/{userId}/presence:
    put:
      tags:
      - Users
      summary: Update presence
      description: Set the presence and / or status text for a user
      operationId: updateUserPresence
      parameters:
      - name: userId
        in: path
        description: The id of the user that should get the presence updated. Only users with admin privileges are allowed to set the presence for other users
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/UpdateUserPresenceRequest'
      responses:
        '204':
          description: Indicates the user presence was updated.
        '400':
          description: Indicates the request body is incomplete or contains illegal values.
        '403':
          description: Indicates the user does not have rights to perform the update.
      security:
      - basicAuth: []
  /users/{userId}/update-state:
    put:
      tags:
      - Users
      summary: Update a user state and sub state
      description: ''
      operationId: updateUserStateAndSubState
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserStateRequest'
      responses:
        '200':
          description: Indicates the user was updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
  /users/{userId}/update-user-definition:
    put:
      tags:
      - Users
      summary: Update a user definition
      description: ''
      operationId: updateUserDefinition
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserDefinitionRequest'
      responses:
        '200':
          description: Indicates the user was updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformUserResponse'
        '404':
          description: Indicates the requested user was not found.
        '409':
          description: Indicates the requested user was updated simultaneously.
      security:
      - basicAuth: []
components:
  schemas:
    UpdateUserRequest:
   

# --- truncated at 32 KB (51 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/flowable/refs/heads/main/openapi/flowable-users-api-openapi.yml