getFlow
GEThttps://host/v1/environment/:environment/flows/:id
Get a Flow in an Environment by its id.
Request
Path Parameters
environment stringrequired
id stringrequired
Responses
- 200
Flow
- application/json
- Schema
- Example (auto)
Schema
idstringrequired
namestringrequired
environmentstringrequired
versionstring
docsMarkdownstring
assigneesstring[]
{
"id": "string",
"name": "string",
"environment": "string",
"version": "string",
"docsMarkdown": "string",
"assignees": [
"string"
]
}
Authorization: Authorization
name: Authorizationtype: httpscheme: bearerbearerFormat: JWTdescription: Enter JWT tokenin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear