Hi ,
Thanks for reaching out to Microsoft Q&A.
Yes, you can send custom event data to Azure Application Insights using the officially supported REST API without requiring any programming language. This is achieved via the v2/track
endpoint, which allows you to ingest telemetry data through simple HTTP requests.
Ingestion endpoint
https://<resource>.applicationinsights.azure.com/v2/track
Replace <resource>
with your Application Insights resource name.
Is This Officially Supported?
Yes, the v2/track
endpoint is officially supported by Azure Application Insights for sending telemetry data, including custom events. The use of the x-api-key
header for authentication aligns with the Azure documentation.
Please feel free to click the 'Upvote' (Thumbs-up) button and 'Accept as Answer'. This helps the community by allowing others with similar queries to easily find the solution.