Get Parameters

GET /pipelines/get-parameters

Get pipeline parameters

Request

Headers

An API Key is required to access this endpoint.

Params

Response

The API returns the response in JSON format.

Each response includes an array of parameters. Each parameter has an id, name, and type , which can be either file or string.

Example

{
  "parameters": [
    { "id": "6901b859-fe94-4c3c-a826-a4d484f309a6", "name": "restaurant_id", "type": "string" },
    { "id": "daa2c04d-0fa5-4d0e-be21-e18c1e940592", "name": "review", "type": "string" },
    { "id": "4f2151b3-4b75-48d8-aed2-7fb96d895520", "name": "menu", "type": "file" }
  ]
}

Last updated