I'm trying to use Google API's. I found a method:
GET https://analyticsadmin.googleapis.com/v1beta/{parent=properties/*}/conversionEvents
With a mark:
The URL uses gRPC Transcoding syntax.
I need put my value after properties
.
But I don't understand, how I can send a HTTP request like via Postman. I read article from API but still can't get it. Tried with https://analyticsadmin.googleapis.com/v1beta/parent="properties/3177281"/conversionEvents
But always got 404 Not Found
For posterity:
Replace {parent=properties/*}
with the value properties/3177281
So the URL should be:
https://analyticsadmin.googleapis.com/v1beta/properties/3177281/conversionEvents