Workday Integration · Capability

Workday Integration Workday Student Core API — Student Core

Workday Integration Workday Student Core API — Student Core. 2 operations. Lead operation: Workday Integration Retrieve a collection of students. Self-contained Naftiko capability covering one Workday Integration business surface.

Run with Naftiko Workday IntegrationStudent Core

What You Can Do

GET
Getstudents — Workday Integration Retrieve a collection of students
/v1/students
GET
Getstudentbyid — Workday Integration Retrieve a specific Student
/v1/students/{id}

MCP Tools

workday-integration-retrieve-collection-students

Workday Integration Retrieve a collection of students

read-only idempotent
workday-integration-retrieve-specific-student

Workday Integration Retrieve a specific Student

read-only idempotent

Capability Spec

student-core-student-core.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Integration Workday Student Core API — Student Core
  description: 'Workday Integration Workday Student Core API — Student Core. 2 operations. Lead operation: Workday Integration
    Retrieve a collection of students. Self-contained Naftiko capability covering one Workday Integration business surface.'
  tags:
  - Workday Integration
  - Student Core
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_INTEGRATION_API_KEY: WORKDAY_INTEGRATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: student-core-student-core
    baseUri: https://{baseUrl}/ccx/api/studentCore/v1/{tenant}
    description: Workday Integration Workday Student Core API — Student Core business capability. Self-contained, no shared
      references.
    resources:
    - name: students
      path: /students
      operations:
      - name: getstudents
        method: GET
        description: Workday Integration Retrieve a collection of students
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: students-ID
      path: /students/{ID}
      operations:
      - name: getstudentbyid
        method: GET
        description: Workday Integration Retrieve a specific Student
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: student-core-student-core-rest
    port: 8080
    description: REST adapter for Workday Integration Workday Student Core API — Student Core. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/students
      name: students
      description: REST surface for students.
      operations:
      - method: GET
        name: getstudents
        description: Workday Integration Retrieve a collection of students
        call: student-core-student-core.getstudents
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/students/{id}
      name: students-id
      description: REST surface for students-ID.
      operations:
      - method: GET
        name: getstudentbyid
        description: Workday Integration Retrieve a specific Student
        call: student-core-student-core.getstudentbyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: student-core-student-core-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Integration Workday Student Core API — Student Core. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: workday-integration-retrieve-collection-students
      description: Workday Integration Retrieve a collection of students
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: student-core-student-core.getstudents
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-integration-retrieve-specific-student
      description: Workday Integration Retrieve a specific Student
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: student-core-student-core.getstudentbyid
      outputParameters:
      - type: object
        mapping: $.