Safe (Gnosis Safe) · Example Payload

Safes_Delegates_Destroy

Delete a delegate for a Safe. Signature is built the same way that for adding a delegate. Check `POST /delegates/`

delegates

Safes_Delegates_Destroy is an example object payload from Safe (Gnosis Safe), with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "safes_delegates_destroy",
  "method": "DELETE",
  "path": "/tx-service/eth/api/v1/safes/{address}/delegates/{delegate_address}/",
  "summary": "",
  "description": "Delete a delegate for a Safe. Signature is built the same way that for adding a delegate.\nCheck `POST /delegates/`",
  "tags": [
    "delegates"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    },
    {
      "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"
          }
        }
      }
    }
  }
}