Workday Security · Capability

Workday Security Workday Identity Management API — User Accounts

Workday Security Workday Identity Management API — User Accounts. 2 operations. Lead operation: Workday Security List user accounts. Self-contained Naftiko capability covering one Workday Security business surface.

Run with Naftiko Workday SecurityUser Accounts

What You Can Do

GET
Listuseraccounts — Workday Security List user accounts
/v1/useraccounts
GET
Getuseraccount — Workday Security Get a specific user account
/v1/useraccounts/{accountid}

MCP Tools

workday-security-list-user-accounts

Workday Security List user accounts

read-only idempotent
workday-security-get-specific-user

Workday Security Get a specific user account

read-only idempotent

Capability Spec

identity-management-user-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Security Workday Identity Management API — User Accounts
  description: 'Workday Security Workday Identity Management API — User Accounts. 2 operations. Lead operation: Workday Security
    List user accounts. Self-contained Naftiko capability covering one Workday Security business surface.'
  tags:
  - Workday Security
  - User Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_SECURITY_API_KEY: WORKDAY_SECURITY_API_KEY
capability:
  consumes:
  - type: http
    namespace: identity-management-user-accounts
    baseUri: https://{host}/ccx/api/v1/{tenant}
    description: Workday Security Workday Identity Management API — User Accounts business capability. Self-contained, no
      shared references.
    resources:
    - name: userAccounts
      path: /userAccounts
      operations:
      - name: listuseraccounts
        method: GET
        description: Workday Security List user accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountStatus
          in: query
          type: string
          description: Filter by account status
        - name: search
          in: query
          type: string
          description: Search term to filter user accounts by username or display name
    - name: userAccounts-accountId
      path: /userAccounts/{accountId}
      operations:
      - name: getuseraccount
        method: GET
        description: Workday Security Get a specific user account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: Unique identifier of the user account
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_SECURITY_API_KEY}}'
  exposes:
  - type: rest
    namespace: identity-management-user-accounts-rest
    port: 8080
    description: REST adapter for Workday Security Workday Identity Management API — User Accounts. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/useraccounts
      name: useraccounts
      description: REST surface for userAccounts.
      operations:
      - method: GET
        name: listuseraccounts
        description: Workday Security List user accounts
        call: identity-management-user-accounts.listuseraccounts
        with:
          accountStatus: rest.accountStatus
          search: rest.search
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/useraccounts/{accountid}
      name: useraccounts-accountid
      description: REST surface for userAccounts-accountId.
      operations:
      - method: GET
        name: getuseraccount
        description: Workday Security Get a specific user account
        call: identity-management-user-accounts.getuseraccount
        with:
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-management-user-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Security Workday Identity Management API — User Accounts. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: workday-security-list-user-accounts
      description: Workday Security List user accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-management-user-accounts.listuseraccounts
      with:
        accountStatus: tools.accountStatus
        search: tools.search
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-security-get-specific-user
      description: Workday Security Get a specific user account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-management-user-accounts.getuseraccount
      with:
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.