Skip to main content

Check workflow star status

GET 

/workflow/:workflowId/star

Confirms whether the given workflowId is starred.

Request

Path Parameters

    workflowId stringrequired

    Workflow string identifier

Query Parameters

    workspaceId int64

    Workspace numeric identifier

Responses

OK

Schema
    workflowIdstring
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://docs.seqera.io/workflow/:workflowId/star");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Parameters
— pathrequired
— query