
I just did a Data API call to my test app and it returns everything including email and _id (unique id). As long as you generated an API key in your app settings your Google Cloud should have full access. Works with and without a privacy setting on the datatype…
GET [appurl]/version-test/api/1.1/obj/user
responds:
{
"response": {
"cursor": 0,
"results": [
{
"Created Date": "2022-11-24T22:50:38.213Z",
"Modified Date": "2023-05-27T04:52:21.010Z",
"user_signed_up": true,
"authentication": {
"email": {
"email": "[email protected]",
"email_confirmed": null
}
},
"Name-dbv": "Steve",
"Company-dbv": "1685163128552x119955685672303860",
"_id": "1669330238213x822383741817062900"
}
],
"count": 1,
"remaining": 0
}
}