Workday Security · Capability

Workday Security Workday Identity Management API — Account Signons

Workday Security Workday Identity Management API — Account Signons. 2 operations. Lead operation: Workday Security List Workday account signons. Self-contained Naftiko capability covering one Workday Security business surface.

Run with Naftiko Workday SecurityAccount Signons

What You Can Do

GET
Listaccountsignons — Workday Security List Workday account signons
/v1/accountsignons
GET
Getaccountsignon — Workday Security Get a specific account signon
/v1/accountsignons/{signonid}

MCP Tools

workday-security-list-workday-account

Workday Security List Workday account signons

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

Workday Security Get a specific account signon

read-only idempotent

Capability Spec

identity-management-account-signons.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Security Workday Identity Management API — Account Signons
  description: 'Workday Security Workday Identity Management API — Account Signons. 2 operations. Lead operation: Workday
    Security List Workday account signons. Self-contained Naftiko capability covering one Workday Security business surface.'
  tags:
  - Workday Security
  - Account Signons
  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-account-signons
    baseUri: https://{host}/ccx/api/v1/{tenant}
    description: Workday Security Workday Identity Management API — Account Signons business capability. Self-contained, no
      shared references.
    resources:
    - name: accountSignons
      path: /accountSignons
      operations:
      - name: listaccountsignons
        method: GET
        description: Workday Security List Workday account signons
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fromDateTime
          in: query
          type: string
          description: Start of the time range for retrieving signons. The range between fromDateTime and toDateTime must
            be less than 24 hours.
          required: true
        - name: toDateTime
          in: query
          type: string
          description: End of the time range for retrieving signons. The range between fromDateTime and toDateTime must be
            less than 24 hours.
          required: true
        - name: systemAccount
          in: query
          type: string
          description: Filter signons by the system account username
        - name: successful
          in: query
          type: boolean
          description: Filter by signon success status. Set to true for successful signons only or false for failed signons
            only.
    - name: accountSignons-signonId
      path: /accountSignons/{signonId}
      operations:
      - name: getaccountsignon
        method: GET
        description: Workday Security Get a specific account signon
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: signonId
          in: path
          type: string
          description: Unique identifier of the signon event
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_SECURITY_API_KEY}}'
  exposes:
  - type: rest
    namespace: identity-management-account-signons-rest
    port: 8080
    description: REST adapter for Workday Security Workday Identity Management API — Account Signons. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/accountsignons
      name: accountsignons
      description: REST surface for accountSignons.
      operations:
      - method: GET
        name: listaccountsignons
        description: Workday Security List Workday account signons
        call: identity-management-account-signons.listaccountsignons
        with:
          fromDateTime: rest.fromDateTime
          toDateTime: rest.toDateTime
          systemAccount: rest.systemAccount
          successful: rest.successful
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accountsignons/{signonid}
      name: accountsignons-signonid
      description: REST surface for accountSignons-signonId.
      operations:
      - method: GET
        name: getaccountsignon
        description: Workday Security Get a specific account signon
        call: identity-management-account-signons.getaccountsignon
        with:
          signonId: rest.signonId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-management-account-signons-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Security Workday Identity Management API — Account Signons. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: workday-security-list-workday-account
      description: Workday Security List Workday account signons
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-management-account-signons.listaccountsignons
      with:
        fromDateTime: tools.fromDateTime
        toDateTime: tools.toDateTime
        systemAccount: tools.systemAccount
        successful: tools.successful
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-security-get-specific-account
      description: Workday Security Get a specific account signon
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-management-account-signons.getaccountsignon
      with:
        signonId: tools.signonId
      outputParameters:
      - type: object
        mapping: $.