UiPath · Capability

UiPath Platform Management API — Users

UiPath Platform Management API — Users. 3 operations. Lead operation: UiPath Create a User. Self-contained Naftiko capability covering one Uipath business surface.

Run with Naftiko UipathUsers

What You Can Do

POST
Createuser — UiPath Create a User
/v1/{organizationname}/identity/api/user
GET
Getuser — UiPath Get a User by ID
/v1/{organizationname}/identity/api/user/{userid}
DELETE
Deleteuser — UiPath Delete a User
/v1/{organizationname}/identity/api/user/{userid}

MCP Tools

uipath-create-user

UiPath Create a User

uipath-get-user-id

UiPath Get a User by ID

read-only idempotent
uipath-delete-user

UiPath Delete a User

idempotent

Capability Spec

platform-management-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: UiPath Platform Management API — Users
  description: 'UiPath Platform Management API — Users. 3 operations. Lead operation: UiPath Create a User. Self-contained
    Naftiko capability covering one Uipath business surface.'
  tags:
  - Uipath
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UIPATH_API_KEY: UIPATH_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-management-users
    baseUri: https://cloud.uipath.com
    description: UiPath Platform Management API — Users business capability. Self-contained, no shared references.
    resources:
    - name: organizationName-identity_-api-User
      path: /{organizationName}/identity_/api/User
      operations:
      - name: createuser
        method: POST
        description: UiPath Create a User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizationName-identity_-api-User-userId
      path: /{organizationName}/identity_/api/User/{userId}
      operations:
      - name: getuser
        method: GET
        description: UiPath Get a User by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteuser
        method: DELETE
        description: UiPath Delete a User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.UIPATH_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-management-users-rest
    port: 8080
    description: REST adapter for UiPath Platform Management API — Users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/{organizationname}/identity/api/user
      name: organizationname-identity-api-user
      description: REST surface for organizationName-identity_-api-User.
      operations:
      - method: POST
        name: createuser
        description: UiPath Create a User
        call: platform-management-users.createuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/{organizationname}/identity/api/user/{userid}
      name: organizationname-identity-api-user-userid
      description: REST surface for organizationName-identity_-api-User-userId.
      operations:
      - method: GET
        name: getuser
        description: UiPath Get a User by ID
        call: platform-management-users.getuser
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuser
        description: UiPath Delete a User
        call: platform-management-users.deleteuser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-management-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for UiPath Platform Management API — Users. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: uipath-create-user
      description: UiPath Create a User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-management-users.createuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-get-user-id
      description: UiPath Get a User by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-management-users.getuser
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-delete-user
      description: UiPath Delete a User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-management-users.deleteuser
      outputParameters:
      - type: object
        mapping: $.