Delete Template
DELETEhttps://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
- 200
- 400
- 404
- 405
Template deleted successfully!
- application/json
- Schema
- Example (auto)
Schema
objectIdstring
Example:
Bxh2aspHp3
deletedAtdate (string)
Example:
2023-10-07T16:49:56.000Z
{
"objectId": "Bxh2aspHp3",
"deletedAt": "2023-10-07T16:49:56.000Z"
}
Something went wrong, please try again later!
- application/json
- Schema
- Example (auto)
Schema
errorstring
Example:
Something went wrong, please try again later!
{
"error": "Something went wrong, please try again later!"
}
Template not found!
- application/json
- Schema
- Example (auto)
Schema
errorstring
Example:
Template not found!
{
"error": "Template not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (auto)
Schema
errorstring
Example:
Invalid API token!
{
"error": "Invalid API token!"
}
Authorization: x-api-token
name: x-api-tokentype: apiKeyin: header
- 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.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());
ResponseClear