Skip to main content

Stop a pipeline

POST 

https://api.vectorize.io/v1/org/:organization/pipelines/:pipeline/stop

Stop a pipeline

Request

Path Parameters

    organization stringrequired
    pipeline stringrequired

Responses

Pipeline stopped successfully

Schema
    messagestringrequired

Authorization: http

name: bearerAuthtype: httpscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.vectorize.io/v1/org/:organization/pipelines/:pipeline/stop");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.vectorize.io/v1
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!