Workday Extend · Capability

Workday Extend REST API — Apps

Workday Extend REST API — Apps. 5 operations. Lead operation: Workday Extend List Extend applications. Self-contained Naftiko capability covering one Workday Extend business surface.

Run with Naftiko Workday ExtendApps

What You Can Do

GET
Listapps — Workday Extend List Extend applications
/v1/apps
POST
Createapp — Workday Extend Register a new Extend application
/v1/apps
GET
Getapp — Workday Extend Retrieve an Extend application
/v1/apps/{appid}
PATCH
Updateapp — Workday Extend Update an Extend application
/v1/apps/{appid}
DELETE
Deleteapp — Workday Extend Delete an Extend application
/v1/apps/{appid}

MCP Tools

workday-extend-list-extend-applications

Workday Extend List Extend applications

read-only idempotent
workday-extend-register-new-extend

Workday Extend Register a new Extend application

workday-extend-retrieve-extend-application

Workday Extend Retrieve an Extend application

read-only idempotent
workday-extend-update-extend-application

Workday Extend Update an Extend application

idempotent
workday-extend-delete-extend-application

Workday Extend Delete an Extend application

idempotent

Capability Spec

rest-apps.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Extend REST API — Apps
  description: 'Workday Extend REST API — Apps. 5 operations. Lead operation: Workday Extend List Extend applications. Self-contained
    Naftiko capability covering one Workday Extend business surface.'
  tags:
  - Workday Extend
  - Apps
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_EXTEND_API_KEY: WORKDAY_EXTEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-apps
    baseUri: https://{baseUrl}/api/extend/v1/{tenant}
    description: Workday Extend REST API — Apps business capability. Self-contained, no shared references.
    resources:
    - name: apps
      path: /apps
      operations:
      - name: listapps
        method: GET
        description: Workday Extend List Extend applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapp
        method: POST
        description: Workday Extend Register a new Extend application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: apps-appId
      path: /apps/{appId}
      operations:
      - name: getapp
        method: GET
        description: Workday Extend Retrieve an Extend application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateapp
        method: PATCH
        description: Workday Extend Update an Extend application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteapp
        method: DELETE
        description: Workday Extend Delete an Extend application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_EXTEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-apps-rest
    port: 8080
    description: REST adapter for Workday Extend REST API — Apps. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/apps
      name: apps
      description: REST surface for apps.
      operations:
      - method: GET
        name: listapps
        description: Workday Extend List Extend applications
        call: rest-apps.listapps
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapp
        description: Workday Extend Register a new Extend application
        call: rest-apps.createapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apps/{appid}
      name: apps-appid
      description: REST surface for apps-appId.
      operations:
      - method: GET
        name: getapp
        description: Workday Extend Retrieve an Extend application
        call: rest-apps.getapp
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateapp
        description: Workday Extend Update an Extend application
        call: rest-apps.updateapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteapp
        description: Workday Extend Delete an Extend application
        call: rest-apps.deleteapp
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-apps-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Extend REST API — Apps. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: workday-extend-list-extend-applications
      description: Workday Extend List Extend applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-apps.listapps
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-register-new-extend
      description: Workday Extend Register a new Extend application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-apps.createapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-retrieve-extend-application
      description: Workday Extend Retrieve an Extend application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-apps.getapp
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-update-extend-application
      description: Workday Extend Update an Extend application
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-apps.updateapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-delete-extend-application
      description: Workday Extend Delete an Extend application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-apps.deleteapp
      outputParameters:
      - type: object
        mapping: $.