Safe (Gnosis Safe) · Example Payload

User_Operations_Retrieve

Returns a UserOperation given its user operation hash

4337

User_Operations_Retrieve 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": "user_operations_retrieve",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/user-operations/{user_operation_hash}/",
  "summary": "",
  "description": "Returns a UserOperation given its user operation hash",
  "tags": [
    "4337"
  ],
  "parameters": [
    {
      "name": "user_operation_hash",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/UserOperationWithSafeOperationResponse"
          }
        }
      }
    }
  }
}