same here, did anyone find a solution? I have tried different approaches and even the demo yaml file from chatgpt with {pet:id} in the path… still not working.
{
“openapi”: “3.1.0”,
“info”: {
“title”: “Google Analytics Data Fetch”,
“description”: “Fetches data from Google Analytics for a given property, metrics, and date range.”,
“version”: “v1.0.0”
},
“servers”: [
{
“url”: “https://analyticsadmin.googleapis.com”
}
],
“paths”: {
“/v1beta/properties/{property_id}:runReport”: {
“post”: {
“description”: “Run a Google Analytics report for a specific property”,
“operationId”: “runGoogleAnalyticsReport”,
“parameters”: [
{
“name”: “property_id”,
“in”: “path”,
“description”: “The Google Analytics property ID”,
“required”: true,
“schema”: {
“type”: “string”
}
}
],…
rest of the schema
Or even:
/v1beta/{property=properties/*}:runReport:
post:
operationId: runReport
summary: Run a report on a Google Analytics property
parameters:
- name: property
in: path
required: true
description: A Google Analytics GA4 property identifier whose events are tracked.
…