Workday Extend · Capability

Workday Extend REST API — App Deployments

Workday Extend REST API — App Deployments. 3 operations. Lead operation: Workday Extend List application deployments. Self-contained Naftiko capability covering one Workday Extend business surface.

Run with Naftiko Workday ExtendApp Deployments

What You Can Do

GET
Listappdeployments — Workday Extend List application deployments
/v1/apps/{appid}/deployments
POST
Deployapp — Workday Extend Deploy an Extend application
/v1/apps/{appid}/deployments
GET
Getappdeployment — Workday Extend Retrieve a specific deployment
/v1/apps/{appid}/deployments/{deploymentid}

MCP Tools

workday-extend-list-application-deployments

Workday Extend List application deployments

read-only idempotent
workday-extend-deploy-extend-application

Workday Extend Deploy an Extend application

workday-extend-retrieve-specific-deployment

Workday Extend Retrieve a specific deployment

read-only idempotent

Capability Spec

rest-app-deployments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Extend REST API — App Deployments
  description: 'Workday Extend REST API — App Deployments. 3 operations. Lead operation: Workday Extend List application deployments.
    Self-contained Naftiko capability covering one Workday Extend business surface.'
  tags:
  - Workday Extend
  - App Deployments
  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-app-deployments
    baseUri: https://{baseUrl}/api/extend/v1/{tenant}
    description: Workday Extend REST API — App Deployments business capability. Self-contained, no shared references.
    resources:
    - name: apps-appId-deployments
      path: /apps/{appId}/deployments
      operations:
      - name: listappdeployments
        method: GET
        description: Workday Extend List application deployments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deployapp
        method: POST
        description: Workday Extend Deploy 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: apps-appId-deployments-deploymentId
      path: /apps/{appId}/deployments/{deploymentId}
      operations:
      - name: getappdeployment
        method: GET
        description: Workday Extend Retrieve a specific deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_EXTEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-app-deployments-rest
    port: 8080
    description: REST adapter for Workday Extend REST API — App Deployments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/apps/{appid}/deployments
      name: apps-appid-deployments
      description: REST surface for apps-appId-deployments.
      operations:
      - method: GET
        name: listappdeployments
        description: Workday Extend List application deployments
        call: rest-app-deployments.listappdeployments
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: deployapp
        description: Workday Extend Deploy an Extend application
        call: rest-app-deployments.deployapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apps/{appid}/deployments/{deploymentid}
      name: apps-appid-deployments-deploymentid
      description: REST surface for apps-appId-deployments-deploymentId.
      operations:
      - method: GET
        name: getappdeployment
        description: Workday Extend Retrieve a specific deployment
        call: rest-app-deployments.getappdeployment
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-app-deployments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Extend REST API — App Deployments. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: workday-extend-list-application-deployments
      description: Workday Extend List application deployments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-app-deployments.listappdeployments
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-deploy-extend-application
      description: Workday Extend Deploy an Extend application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-app-deployments.deployapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-retrieve-specific-deployment
      description: Workday Extend Retrieve a specific deployment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-app-deployments.getappdeployment
      outputParameters:
      - type: object
        mapping: $.