Workday · Capability

Workday Talent Management API — Succession Planning

Workday Talent Management API — Succession Planning. 2 operations. Lead operation: Get Succession Plans. Self-contained Naftiko capability covering one Workday business surface.

Run with Naftiko WorkdaySuccession Planning

What You Can Do

GET
Getsuccessionplans — Get Succession Plans
/v1/successionplans
GET
Getsuccessionplanbyid — Get Succession Plan by Id
/v1/successionplans/{id}

MCP Tools

get-succession-plans

Get Succession Plans

read-only idempotent
get-succession-plan-id

Get Succession Plan by Id

read-only idempotent

Capability Spec

talent-succession-planning.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Talent Management API — Succession Planning
  description: 'Workday Talent Management API — Succession Planning. 2 operations. Lead operation: Get Succession Plans. Self-contained
    Naftiko capability covering one Workday business surface.'
  tags:
  - Workday
  - Succession Planning
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_API_KEY: WORKDAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: talent-succession-planning
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/talent/v1/{tenant}
    description: Workday Talent Management API — Succession Planning business capability. Self-contained, no shared references.
    resources:
    - name: successionPlans
      path: /successionPlans
      operations:
      - name: getsuccessionplans
        method: GET
        description: Get Succession Plans
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: successionPlans-ID
      path: /successionPlans/{ID}
      operations:
      - name: getsuccessionplanbyid
        method: GET
        description: Get Succession Plan by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_API_KEY}}'
  exposes:
  - type: rest
    namespace: talent-succession-planning-rest
    port: 8080
    description: REST adapter for Workday Talent Management API — Succession Planning. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/successionplans
      name: successionplans
      description: REST surface for successionPlans.
      operations:
      - method: GET
        name: getsuccessionplans
        description: Get Succession Plans
        call: talent-succession-planning.getsuccessionplans
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/successionplans/{id}
      name: successionplans-id
      description: REST surface for successionPlans-ID.
      operations:
      - method: GET
        name: getsuccessionplanbyid
        description: Get Succession Plan by Id
        call: talent-succession-planning.getsuccessionplanbyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: talent-succession-planning-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Talent Management API — Succession Planning. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: get-succession-plans
      description: Get Succession Plans
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: talent-succession-planning.getsuccessionplans
      outputParameters:
      - type: object
        mapping: $.
    - name: get-succession-plan-id
      description: Get Succession Plan by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: talent-succession-planning.getsuccessionplanbyid
      outputParameters:
      - type: object
        mapping: $.