List available workflows
GEThttp://localhost:13033/conversion/v1.0/rest/workflows
List available workflows
Responses
- 200
A list of all available workflows.
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
Array [
]
namestring
isDefaultboolean
profiles
profile[]
[
{
"name": "string",
"isDefault": true,
"profiles": [
{
"name": "string",
"isDefault": true
}
]
}
]
- Schema
- Example (from schema)
Schema
Array [
]
namestring
isDefaultboolean
profiles
profile[]
<0>
<name>string</name>
<isDefault>true</isDefault>
<profiles>
<name>string</name>
<isDefault>true</isDefault>
</profiles>
</0>
- 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, "http://localhost:13033/conversion/v1.0/rest/workflows");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear