Files
RestCOBOL/api.yaml
T

14 lines
335 B
YAML

version: "1.0"
project: "legacy-student-api"
endpoints:
- path: "/students/{id}"
method: "GET"
cobol_source: "src/fetch_student.cbl"
procedure: "FETCH-STUDENT"
arguments:
- name: "id"
target: "LK-ID"
type: "PIC 9(5)"
source: "path"
response_copybook: "src/copybooks/student_res.cpy"