GET
/
v1
/
pipes
/
{pipe_name_format}
/
materialize
curl --request GET \
  --url https://api.airfold.co/v1/pipes/{pipe_name_format}/materialize \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "description": "<string>",
    "nodes": [
      {}
    ],
    "to": "<string>",
    "publish": "<string>",
    "params": [
      {
        "name": "<string>",
        "type": "int",
        "default": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

pipe_name_format
string
required

Pipe name

Response

200
application/json
OK
name
string
required

Pipe name

nodes
object[]
required
description
string

Pipe description

to
string

Target source

publish
string

Endpoint name

params
object[]