Deletes a signer by ID.

DELETE
/api/v1/signers/{signer_id}
AuthorizationBearer <token>

In: header

Path Parameters

signer_idstring

Signer ID

Response Body

curl -X DELETE "https://loading/api/v1/signers/string"
{
  "data": "Signer deleted successfully",
  "message": "Signer deleted successfully",
  "success": true
}
{
  "data": null,
  "message": "Bad Request",
  "success": false
}
{
  "data": null,
  "message": "Unauthorized",
  "success": false
}
{
  "data": null,
  "message": "Signer not found",
  "success": false
}
{
  "data": null,
  "message": "Internal Server Error",
  "success": false
}