Skip to main content

Remove the Document Content

DELETE 

https://api.ignisign.io/v4/documents/{documentId/content

This endpoint removes the content of a specific document.

Request

Responses

The document from which content was removed.

Authorization: http

name: ignisign_api_authtype: httpscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://api.ignisign.io/v4/documents/{documentId/content");
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://api.ignisign.io
Auth
Parameters
— pathrequired
ResponseClear

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