Skip to main content
cURL
curl --request POST \
  --url https://api.example.com/add \
  --header 'Content-Type: application/json' \
  --data '
{
  "device_name": "<string>",
  "content": {
    "content_type": "<string>",
    "data": [
      {
        "file_path": "<string>",
        "timestamp": "2023-11-07T05:31:56Z",
        "app_name": "<string>",
        "window_name": "<string>",
        "ocr_results": [
          {
            "text": "<string>",
            "confidence": 123
          }
        ],
        "tags": [
          "<string>"
        ]
      }
    ]
  }
}
'
{
  "success": true,
  "message": "<string>"
}

Body

application/json
device_name
string
required
content
object
required

Response

200 - application/json
success
boolean
required
message
string | null
required