cURL
curl --request POST \ --url https://insights.reforge.com/api/v1/accounts/identify \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "id": "account-789", "shouldUnflattenProperties": true } '
{ "success": true }
Bearer authentication header of the form Bearer , where is your auth token.
The unique identifier for the account.
"account-789"
Whether to unflatten properties that are meant to be nested objects for example { "plan.type": "Pro" } will be unflattened to { "plan": { "type": "Pro" } }
{ "plan.type": "Pro" }
{ "plan": { "type": "Pro" } }
Show child attributes
The account was identified successfully