Skip to main content

getFlow

GET 

https://host/v1/environment/:environment/flows/:id

Get a Flow in an Environment by its id.

Request

Path Parameters

    environment stringrequired
    id stringrequired

Responses

Flow

Schema
    idstringrequired
    namestringrequired
    environmentstringrequired
    versionstring
    docsMarkdownstring
    assigneesstring[]

Authorization: Authorization

name: Authorizationtype: httpscheme: bearerbearerFormat: JWTdescription: Enter JWT tokenin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://host/v1/environment/:environment/flows/:id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://host
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

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