Skip to main content

Delete Template

DELETE 

https://sandbox.opensignlabs.com/api/v1/template/:template_id

The Delete Template API provides you with the ability to remove a specific template from the templates. If a template is no longer needed

Request

Path Parameters

    template_id stringrequired

    ID of the template that needs to be deleted

Responses

Template deleted successfully!

Schema
    objectIdstring
    Example: Bxh2aspHp3
    deletedAtdate (string)
    Example: 2023-10-07T16:49:56.000Z

Authorization: x-api-token

name: x-api-tokentype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://sandbox.opensignlabs.com/api/v1/template/:template_id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("x-api-token", "<x-api-token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://sandbox.opensignlabs.com/api/v1
Auth
Parameters
— pathrequired
ResponseClear

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