Skip to main content

Delete Work Plan

DELETE 

https://racko-api.ianai.co/v2/workplan/:id

Delete Work Plan

Request

Responses

Work Plan

Authorization: http

name: bearerAuthtype: httpscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://racko-api.ianai.co/v2/workplan/:id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://racko-api.ianai.co/v2
Auth
Parameters
— pathrequired
— header
ResponseClear

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