Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 630 Bytes

API.md

File metadata and controls

26 lines (18 loc) · 630 Bytes

CDD JSON-RPC APIs

Getting started

  • This api accepts POST requests exposed via JSON-RPC 2.0. You may wish to read the spec.

Example request:

{"jsonrpc" : "2.0",  "method" : "listModels",  "params" : [ ]}

Example response:

{"jsonrpc" : "2.0", "result" : [{ "name" : "Pet", "age" : 45 }]

Authentication

Currently the api does not require authentication, as it is primarily used in a controlled environment. This may change in future as remote requests become necessary.

Methods

listModels

Lists all models in a project.

Parameters

/none/