I’m following these docs: https://auth0.com/docs/users/bulk-user-exports to try and export my users. Everything is working.
I know we can use identities[0].connection to get a specified element, but currently, I want to export all the elements in the identities array and user_metadata object but I cannot find any docs about it.
Then endpoint I used: /api/v2/jobs/users-exports
And the payload:
{ "connection_id": "con_01111111111111", "format": "csv", "limit": 10, "fields": [ { "name": "created_at" }, { "name": "email" }, { "name": "identities" }, { "name": "user_metadata" } ] }
But the results are empty, even though we have identities and user_metadata data exist.
Could anyone help me?