Export Users using the User Export API
Export users from your project into a CSV or JSON file
Last updated
Export users from your project into a CSV or JSON file
Last updated
The Export User API offers a means for exporting user data such as user ID, email, phone number, etc from your Authgear project into a CSV or ndjson file.
In this guide, you'll learn how to use the User Export API.
The User Export API allows developers to bulk export users into a file.
The export process is asynchronous. That is, the process runs in the background. Hence, you will need to initiate an export task in one endpoint call and then, make an additional call to another endpoint to get the status of the export task.
To use the Export User API, your application must be authenticated using an Admin API JWT token.
Once you obtain a valid Admin API JWT, you can set it as a Bearer Authorization header to access the Export User API Endpoints. The API will return a "403 Forbidden" error if an invalid JWT is used.
The following are the two endpoints for the User Export API:
POST
/_api/admin/users/export
Use this endpoint to create a new user export task.
Headers
Name | Value |
---|---|
Body
The Initiate Export endpoint accepts JSON input via an HTTP(S) request body. The following is an example of the input:
The format
field is where you specify the format of the export file. The value can be csv
or ndjson
.
csv
: use this field when format
is set to csv
. The value is an object with a fields
property.
csv.fields
: you can use this field to list all the user attributes you want to include as fields in the CSV file. The value should be an array and each item in the array is an object with a pointer
and an optional field_name
property that describe a user attribute.
The following is a complete list of supported pointers:
If csv.fields
is not specified, all the above pointers will be included as fields in the exported CSV file.
The value for pointer
for a custom attribute will follow this format:
For example, a custom attribute named member_id
will be {"pointer": "/custom_attributes/member_id"}
.
If field_name
is not given, then it is derived from pointer
using the following rules:
Let parts
be the list of the reference tokens in pointer
.
Join parts
with the character .
.
For example, following the above roles, the derived field_name for {"pointer": "/address/formatted"}
will be address.formatted
.
Response
The body of an HTTP(S) request to the Initiate Export endpoint looks like this:
id
: the value for this field is the export task ID required in the check status endpoint.
created_at
: contains the date and time an export task was created.
status
: returns pending
when the task is created successfully.
Error Response
GET
/_api/admin/users/export/{Task ID}
Use this endpoint to query the status of an existing export task. Replace {Task ID}
with the task id
returned in the response body of the initiate export endpoint.
Headers
Response
The following is what the response body of the Check Status endpoint looks like:
The status
field reports progress on the current export task. If the value is completed
, the export is complete, and you can now download the export file.
download_url
: This is a signed URL that you can use to download the export file.
Note: The result from a completed export task will expire after 24 hours. Hence, after 24 hours, you can no longer use the task ID associated with the task to generate a new download link.
Error Response
The response of the check status endpoint will include a download_url
field that contains a signed URL that you can open to download the CSV or ndjson user export file.
The signed URL is only valid for 60 seconds, and afterwards, you'll have to make another request to the check status endpoint using the task ID to obtain a new URL.
The following example shows how to use the User Export API in a Node.js application.
First, you need to get the Admin API JWT that will be used to authenticate requests to the endpoints.
To do that, install JsonWebToken (a Node package for generating JWT) by running the following command:
Now, create a generateJWT()
function in your Express app to generate the JWT:
See Admin API Authentication for a more detailed guide on how to get your key ID, and private key and generate Admin API JWT using different programming languages.
Make an HTTP(S) POST request to the initiate export endpoint. To do that, first, install the node-fetch package in your app using this command:
Then add the following code to your application:
In this step, we'll check the status of the export task we initiated by making an HTTP(S) request to the Check Status endpoint.
Add the following route to your app to check the status of an export task using the task ID:
When the status task is completed, the HTTP(S) response body will contain a download_url
field. Open the URL in the value of download_url
to download the exported users file.
Pointer | Description | Value |
---|---|---|
Description | Name | Reason | Info |
---|---|---|---|
Name | Value |
---|---|
Description | Name | Reason | Info |
---|---|---|---|