Safe (Gnosis Safe) · Example Payload

Safes_User_Operations_List

Returns the list of UserOperations for a given Safe account

4337

Safes_User_Operations_List 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_user_operations_list",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/safes/{address}/user-operations/",
  "summary": "",
  "description": "Returns the list of UserOperations for a given Safe account",
  "tags": [
    "4337"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "ordering",
      "in": "query",
      "required": false,
      "description": "Which field to use when ordering the results.",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "limit",
      "in": "query",
      "required": false,
      "description": "Number of results to return per page.",
      "schema": {
        "type": "integer"
      }
    },
    {
      "name": "offset",
      "in": "query",
      "required": false,
      "description": "The initial index from which to return the results.",
      "schema": {
        "type": "integer"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/PaginatedUserOperationWithSafeOperationResponseList"
          }
        }
      }
    }
  }
}