app.didpic.notification.recordEvents

lexicons.didpic.app

Documentation

Submit a batch of analytics events from the mobile app.

main procedure

Submit a batch of analytics events from the mobile app.

Input

Encodingapplication/json
events array Required

No description available.

maxLength: 20 items

Output

Encodingapplication/json
inserted integer Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "events"
      ],
      "properties": {
        "events": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "event"
            ],
            "properties": {
              "ts": {
                "type": "string",
                "format": "datetime"
              },
              "did": {
                "type": "string",
                "format": "did"
              },
              "event": {
                "type": "string"
              },
              "props": {
                "type": "unknown"
              },
              "platform": {
                "type": "string"
              },
              "appVersion": {
                "type": "string"
              }
            }
          },
          "maxLength": 20
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "inserted"
      ],
      "properties": {
        "inserted": {
          "type": "integer"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Submit a batch of analytics events from the mobile app."
}

Lexicon Garden

@