{ "operationId": "delegates_destroy", "method": "DELETE", "path": "/tx-service/eth/api/v1/delegates/{delegate_address}/", "summary": "", "description": "Delete every pair delegate/delegator found. Signature is built the same way as for adding a delegate,\nbut in this case the signer can be either the `delegator` (owner) or the `delegate` itself.\nCheck `POST /delegates/`", "tags": [ "delegates" ], "parameters": [ { "name": "delegate_address", "in": "path", "required": true, "description": "", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Deleted", "content": {} }, "400": { "description": "Malformed data", "content": {} }, "404": { "description": "Delegate not found", "content": {} }, "422": { "description": "Invalid Ethereum address/Error processing data", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeErrorResponse" } } } } } }