Files
RestCOBOL-POC/api.yaml
T
2026-06-09 19:29:34 +02:00

16 lines
373 B
YAML

version: "1.0"
project: "legacy-finance-api"
endpoints:
- path: "/accounts/{id}"
method: "GET"
cobol_source: "src/fetch_account.cbl"
procedure: "GET_ACCOUNT_DATA"
arguments:
- name: "id"
type: "PIC X(10)"
source: "path"
response:
- name: "balance"
type: "PIC 9(7)V99"
- name: "status"
type: "PIC X(2)"