Skip to main content

Validate run name

GET 

/workflow/validate

Check that the given run name of a workflow has a valid format. When the session ID is given: check that no other workflow in the system exists with the combination of both elements.

Request

Query Parameters

    runName string

    Workflow run name to validate

    sessionId string

    Workflow session ID to validate

Responses

OK - No content

Authorization: http

name: BearerAuthtype: httpscheme: bearerbearerFormat: jwt
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://docs.seqera.io/workflow/validate");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Auth
Parameters
— query
— query