Skip to main content
GET
/
pipelines
/
{id}
Get pipeline
curl --request GET \
  --url https://api.sftpsync.io/pipelines/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "mappings": [
    {
      "sourceField": "<string>",
      "targetField": "<string>",
      "transform": "<string>",
      "defaultValue": "<unknown>"
    }
  ],
  "isActive": true,
  "workspaceId": "<string>",
  "clientId": "<string>",
  "schemaId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "direction": "inbound"
}

Documentation Index

Fetch the complete documentation index at: https://docs.filefeed.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Response

Pipeline

id
string
required
name
string
required
mappings
object
required
isActive
boolean
required
workspaceId
string
required
clientId
string
required
schemaId
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
direction
enum<string>
default:inbound

Pipeline direction. Outbound pipelines accept data via the Outbound Uploads API.

Available options:
inbound,
outbound