Skip to content

Delete Signer

DELETE {{base_url}}/v1/electronica/firmante/{{firmante_id}}

This endpoint allows permanently deleting a previously registered signer from the system. This action revokes the signer’s access to the associated document.



This resource is protected. You must include your access token in the request header.

ParameterTypeDescriptionLimits
Authorization*stringAccess token (Bearer token).Required

Ventana de terminal
curl -X DELETE [{{base_url}}/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba]({{base_url}}/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba) \
-H "Authorization: Bearer TU_TOKEN_AQUI"
const myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer TU_TOKEN_AQUI");
const requestOptions = {
method: "DELETE",
headers: myHeaders,
redirect: "follow"
};
fetch("[{{base_url}}/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba]({{base_url}}/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba)", requestOptions)
.then((response) => response.json())
.then((result) => console.log(result))
.catch((error) => console.error(error));

Code Status Description
200 OK Signer deleted successfully.
401 Unauthorized Missing or invalid token.
404 Not Found Signer not found or was already deleted.
500 Server Error Internal server failure.