API - Video with analytics data

Use this endpoint to get detailed information about a video, including analytics and full report.

Endpoint:

GET / api/external/videos/:video_id

Response:
{
	"id": "1",
	"code": "123456",
	"description": "video description",
	"created_at": "2023-10-01T12:00:00Z",
	"checkpoints": [
		{
			"checkpoint_id": "1",
			"checkpoint_type": "button",
			"label": "Button 1",
			"action": "action1",
			"value": "value1",
			"data": [
				{
					"id": "1",
					"created_at": "2023-10-01T12:00:00Z",
					"client": {
						"id": "1",
						"ip": "",
						"city": "São Paulo",
						"region": "SP",
						"country": "BR",
						"content": "custom content"
					}
				}
			]
		}
	]
}
Information
  • content: JSON with customer info from video embedding
    Example: {"user_id":"1","name":"Lucas"}