Delete Signer
DELETE
https://app.firmeasy.legal/api/v1/electronica/firmante/{firmante_id}
Delete Signer
Section titled “Delete Signer”This endpoint allows permanently deleting a previously registered signer from the system. This action revokes the signer’s access to the associated document.
Authorization
Section titled “Authorization”This resource is protected. You must include your access token in the request header.
AuthorizationAccess token (Bearer token).
Limits:Required
Implementation Examples
Section titled “Implementation Examples”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"Node.js (Fetch)
Section titled “Node.js (Fetch)”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));Status Codes
Section titled “Status Codes”| 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. |
