Batch Methods

Batch Add Activities

Multiple activities can be added with a single batch operation. This is very convenient when importing data to Stream.

const activities = [
  {'actor': 'User:1', 'verb': 'tweet', 'object': 'Tweet:1'},
  {'actor': 'User:2', 'verb': 'watch', 'object': 'Movie:1'}
];

const addActivities = await user1.addActivities(activities);

Parameters

nametypedescriptiondefaultoptional
activitieslistThe list of activities to be added (as specified in Adding Activities)-

Activity IDs

The API will return a response with a list containing the activity ids.

If you are importing your data for the first time, we suggest you create the follow-relationships after the activity import.

Batch Activity Add

This method allows you to add a single activity to multiple feeds with one API request.

Batch Activity Add has a limit of 5000 target feeds. Requests that exceed this limit will return an error.

TO field targeting is not permitted via this endpoint. Attempting to add activities with a ‘to’ property will result in an error response.

const feeds = ['timeline:1', 'timeline:2', 'timeline:3', 'timeline:4'];
const activity = { 'actor': 'User:2', 'verb': 'pin', 'object': 'Place:42', 'target': 'Board:1' };
const response = await client.addToMany(activity, feeds);

Parameters

nametypedescription
feedslistThe list of a feeds e.g. [‘user:1’, ‘timeline:2’]
activityobjectThe activity object (see Feed endpoint for reference)

Activities added using this method are not propagated to followers. That is, any other Feeds that follow the Feed(s) listed in the API call will not receive the new Activity.

Even if real-time is enabled, for this endpoint it is disabled by default since it’s mainly for backend processing which shouldn’t create noise for users. If you want to enable it, please send a request to support with your app id.

Batch get Activities by ID

Activities can be retrieved by IDs or foreign ID and time.

// retrieve two activities by ID
const response = await client.getActivities({
  ids: [
    '01b3c1dd-e7ab-4649-b5b3-b4371d8f7045',
    'ed2837a6-0a3b-4679-adc1-778a1704852d'
  ]
});

// retrieve two activities by their foreign ID and time
const response = await client.getActivities({
  foreignIDTimes: [
    { foreignID: 'like:1', time: '2018-07-08T14:09:36.000000' },
    { foreignID: 'post:2', time: '2018-07-09T20:30:40.000000' },
  ]
});

const response = await client.getActivities({
  ids: ["1febf8dd-cbbb-11ec-9717-025b47ecba9d"],
  reactions: { recent: true, counts: true, own: true, kind: true },
 });

Combining ID and foreign ID + time parameters is not allowed.

Parameters

nametypedescriptiondefaultoptional
idsstringThe comma-separated list of activity IDs to retrieve-
foreign_id_timeslistThe list of foreign_id and time values used to retrieve activities-
reactions.ownbooleanInclude reactions added by current user to all activities-
reactions.recentbooleanInclude recent reactions to activities-
reaction.countsbooleanInclude reaction counts to activities-

The number of activities that can be retrieved with a single request is limited to 100.

Batch Follow

Stream’s Follow Many functionality gives you a fast method to follow many feeds in one go. This is convenient when importing data or on-boarding new users.

Follow Many has a limit of 2,500 follows per request.

Follow Many has a total request size limit of 128kb, in case you reach it we recommended to split the request in 2.

activity_copy_limit can be specified to copy specific number of activities. By default, it’s 100 such that upon follow 100 activities from the followed feed will be seen in our feed.

// Batch following many feeds
// Let timeline:1 will follow user:1, user:2 and user:3

const follows = [
 {'source': 'timeline:1', 'target': 'user:1'},
 {'source': 'timeline:1', 'target': 'user:2'},
 {'source': 'timeline:1', 'target': 'user:3', 'activity_copy_limit': 0}
];

await client.followMany(follows);

This method can only be used server-side.

Note that the follow relationships will be processed in the background asynchronously so they wont show up immediately.

Parameters

The Batch Follow API does not return response data.

Batch Unfollow

Unfollow Many enables you to unfollow many feeds in bulk. However, its implementation is heavy. That’s why its usage restricted to Enterprise accounts. While unfollowing, history can be kept by keep_history. It’s false by default. When unfollow is done, any activities that come from unfollowed feed will be removed but if the flag is set, then this history will remain.

Unfollow Many has a limit of 250 unfollows per request.

// Batch unfollowing many feeds
// Let timeline:1 will follow user:1, user:2 and user:3

const unfollows = [
 {'source': 'timeline:1', 'target': 'user:1'},
 {'source': 'timeline:1', 'target': 'user:2'},
 {'source': 'timeline:1', 'target': 'user:3', 'keep_history': true} 
];

await client.unfollowMany(unfollows);

The Batch Unfollow API does not return response data. An error is returned on wrong input.

Batch update TO targets

Allows you to update the TO targets of multiple activities in a feed at once, up to a max of 100 activities per call.

feed, err := client.FlatFeed("user", "1")
	if err != nil {
		panic(err)
	}

	reqs := []stream.UpdateToTargetsRequest{
		{
			ForeignID: "foreignID-0",
			Time:   stream.Time{},
			Opts: []stream.UpdateToTargetsOption{
				stream.WithToTargetsAdd("foo:bar", "baz:qux"),
			},
		},
		{
			ForeignID: "foreignID-1",
			Time:   stream.Time{},
			Opts: []stream.UpdateToTargetsOption{
				stream.WithToTargetsAdd("foo:bar", "baz:qux"),
				stream.WithToTargetsRemove("abc:123"),
			},
		},
	}

	resp, err := feed.BatchUpdateToTargets(context.Background(), reqs)
	if err != nil {
		panic(err)
	}

Currently only available in the Go SDK, if you need support for your SDK please contact support.

© Getstream.io, Inc. All Rights Reserved.