Skip to main content

Exporting Users

Zuora

Exporting Users

The following information references how to export Zephrs stored in Zephr from your Zephr Admin Console. If you are using an older version of Zephr, such as Zephr Classic, please review this guide instead.

Zephr provides you with the ability to export a list of Users from the Zephr Identity Store as a JSON export.

To Export Users

First, log in to your Zephr Admin Console.

Once logged in, input the following URL on to your browser:

https://console.zephr.com/v3/user-export

This will download a JSON object displaying all of your users. You can visualize this information using a specific JSON editor or a notepad on your computer.

The information you get will looks similar to the following:

[{"user":{"user_id":"0435ed2d-1221-4de2-88c7-304dbaac8d42","identifiers":{"email_address":"alex.pereda+trial67@zephr.com"},"email_verified":false,"tracking_id":"1ee810c6-a212-42da-9ec9-4700d1a244b1","registered":"2021-02-24T15:43:28Z","registration_tenant":"alexpereda|demosite"},"seq-no":17,"

Export Query Parameters

The red element of the URL above is called the Admin API query parameter.

You can also add a combination of query parameters that will allow you to include additional information on your export, for example:

  • /v3/user-export?grants=true: Provides information about entitlement and their start-end dates
  • /v3/user-export?since=2021-02-24T00:00:00Z: All users who have registered after the specified date
  • /v3/user-export?attributes=true: Export users including their attributes

You can also run a combination of these parameters on to a single query string like:

/v3/user-export?since=2020-09-04T00:00:00Z&attributes=true

A full list of the available query commands can be found in our Admin API documentation.