Exporting Data

Exporting Channels

This method allows you to request an export of one or many channels and download all messages and metadata. Channel exports are created asynchronously, you can use the Task ID returned by the APIs to keep track of the status and to download the final result when it is ready.

The data created by the export is following the same format as the regular APIs and is JSON encoded. By default the entire history is included in the export (excluding truncated messages), but you may optionally request the export to include only the messages in a specific interval using the messages_since and messages_until parameters.

Requesting a channel export

Following code example presents basic usecase of exporting channels. By default truncated messages or soft deleted channels are excluded from export. But you can include them by setting the options include_truncated_messages and include_soft_deleted_channels as true.

//Export one channel
const response = await serverClient.exportChannel({
  type: "livestream",
  id: "white-room", 
  messages_since: "2020-11-10T09:30:00.000Z",
  messages_until: "2020-11-10T11:30:00.000Z",
},{
  include_truncated_messages: true,
  include_soft_deleted_channels: true,
});

const taskID = response.task_id;

//Export multiple channels
const response = await serverClient.exportChannels(
 [
  {
   type: "livestream",
   id: "white-room",
   messages_since: "2020-11-10T09:30:00.000Z",
   messages_until: "2020-11-10T11:30:00.000Z",
  },
  {
   type: "livestream",
   id: "white-room2",
  },
 ],
 {
  include_truncated_messages: true,
  include_soft_deleted_channels: true,
 }
);
const taskID = response.task_id;

Up to 25 channels can be exported with a single export request.

you can use v2 version of the channel export by adding version:"v2" in the request body which will use the new export for channels where each entity of the export would be exported as line separated json.

const response = await serverClient.exportChannel({ 
  type: "livestream", 
  id: "white-room", 
  messages_since: "2020-11-10T09:30:00.000Z", 
  messages_until: "2020-11-10T11:30:00.000Z", 
},{ 
  version: "v2" 
});

Retrieving the status of the export

You can check the status of an export request using the task ID returned when the task was created. The result of the task contains the URL to the JSON file.

The URL to the export file has an expiration of 24-hours. The link is generated every time you request the export status. The export will be available for 60 days.

const response = await serverClient.getExportChannelStatus(taskId);

console.log(response.status);    // the status for this task
console.log(response.result);    // the result object, only present if the task is completed
console.log(response.result.url);  // the link to the JSON export
console.log(response.error);    // if not null the description of the task error

Timestamps will be returned in this format: “2021-02-17T08:17:49.745857Z” and are in UTC.

Exporting Users

To export user data, Stream Chat exposes an exportUser method. This method can *only * be called server-side due to security concerns, so please keep this in mind when attempting to make the call.

Below is an example of how to execute the call to export user data:

const data = await client.exportUser(userID);

The export will return all data about the user, including:

  • User ID

  • Messages

  • Reactions

  • Custom Data

Users with more than 10,000 messages will throw an error during the export process. Reach out to https://getstream.io/contact/support/ for an export of a user with >10,000 messages

© Getstream.io, Inc. All Rights Reserved.