Safe (Gnosis Safe) · Example Payload

Safes_Safe_Operations_Create

Adds a new SafeOperation for a given Safe account

4337

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

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBodyresponses

Example Payload

Raw ↑
{
  "operationId": "safes_safe_operations_create",
  "method": "POST",
  "path": "/tx-service/eth/api/v1/safes/{address}/safe-operations/",
  "summary": "",
  "description": "Adds a new SafeOperation for a given Safe account",
  "tags": [
    "4337"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "requestBody": {
    "content": {
      "application/json": {
        "schema": {
          "$ref": "#/components/schemas/SafeOperation"
        }
      }
    },
    "required": true
  },
  "responses": {
    "201": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "additionalProperties": {},
            "description": "Unspecified response body"
          }
        }
      }
    }
  }
}