Skip to content
FirmEasy

Delete Signer

DELETE
https://app.firmeasy.legal/api/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.

Authorization
string
Access token (Bearer token).
Limits:Required

Ventana de terminal
curl -X DELETE [https://app.firmeasy.legal/api/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba](https://app.firmeasy.legal/api/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("[https://app.firmeasy.legal/api/v1/electronica/firmante/0ebccbe4-938b-4ad1-b204-d1bfaec367ba](https://app.firmeasy.legal/api/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.