Skip to main content

UnifiedViews Method - Create Pipeline

Abstract

UnifiedViews Method - Create Pipeline

Description

Use this call to create a UnifiedViews pipeline.

URL: http://{server}/master/api/1/pipelines

Content Type

application/json

Request

Supported Method

POST

HTTP Parameters

Parameter

Type

Required

Description

name

string

true

Name of your choice for the pipeline you want to create.

description

string

false

A description for the pipeline details.

Example Request
{
    "name": "Extract data from DBpedia",
    "description": "This pipeline uses SPARQL Endpoint extractor to fetch information about cities from DBpedia"
}
ResponseContent-Type

application/json

Status: 200 - OK

Response Attributes
  • id (mandatory): ID of the requested pipeline

  • name (optional): name of the requested pipeline

  • description (optional): description of the requested pipeline

Example Response
{ 
  id: 1,
  name: "The pipeline",
  description: "The description"
}