GET_USER_WIKI_ACTIVITIES
Retrieve wiki creation or edit activities for a specific user on IQ.wiki using their Ethereum address, with optional time-based filtering for precise results.
Instructions
Get wiki activities (creations or edits) for a specific user on IQ.wiki
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| activityType | No | Type of activity: CREATED or UPDATED | |
| id | Yes | The Ethereum address of the user | |
| timeFrameSeconds | No | Optional time frame in seconds to filter results | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "activityType": {
      "description": "Type of activity: CREATED or UPDATED",
      "enum": [
        "CREATED",
        "UPDATED"
      ],
      "type": "string"
    },
    "id": {
      "description": "The Ethereum address of the user",
      "minLength": 1,
      "type": "string"
    },
    "timeFrameSeconds": {
      "description": "Optional time frame in seconds to filter results",
      "type": "number"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}