Skip to main content
GET
/
v1
/
pipes
/
{pipe_name_format}
/
materialize
Get materialized pipe from draft.
curl --request GET \
  --url https://api.us.airfold.co/v1/pipes/{pipe_name_format}/materialize \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "nodes": [
      {}
    ],
    "description": "<string>",
    "to": "<string>",
    "publish": "<string>",
    "params": [
      {
        "name": "<string>",
        "type": "int",
        "default": "<string>"
      }
    ],
    "refresh": {
      "strategy": "replace",
      "interval": "<string>",
      "refresh_on_create": false,
      "settings": {},
      "disabled": false
    }
  }
]

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

OK

name
string
required

Pipe name

nodes
object[]
required
description
string

Pipe description

to
string

Target source

publish
string

Endpoint name

params
object[]
refresh
object