cURL
curl --request POST \ --url https://backend.clipvision.ai/api/analytic/create/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "channel_id": 123, "total_views": 123, "total_subs": 123 } '
{ "analytic_id": 1, "disabled": false, "channel_id": 1, "total_views": 100, "total_subs": 100, "add_date": "2024-03-17T00:00:00.000Z" }
This API endpoint allows a user to create an analytic record.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Analytic successfully created
Analytic OpenAPI Schema