Anson Tsang
Anson Tsang

Reputation: 11

(GA4) cannot find the custom param value of event and user properties in exploration report

I have send data to GA by a simple POST method

https://www.google-analytics.com/mp/collect?measurement_id=<measurement_id>&api_secret=<api_secret>

payload: 
{
    "client_id": "123",
    "user_properties": {
        "testing_database_id": {
            "value": "database id 1"
        },
        "testing_user_id": {
            "value": "user 1"
        }
    },
    "events": [
        {
            "name": "user_action_logs",
            "params": {
                "first_field_name": "102",
                "action_name": "123",
                "database_id": "database_id 123"
            }
        }
    ]
}

enter image description here

I can see the event record with the value I send in real time window, but not the user properties. Also only show the (not set) value in exploration report

enter image description here

How can I find the value of event and user properties in exploration report? Thanks.

Upvotes: 1

Views: 136

Answers (0)

Related Questions