Activities - Segment Presave *



* This is an advanced endpoint. To use, please make sure your plan has advanced access.

Endpoint

POST /v1.1/segment/[segmentid]/presave

Description

Adds a Spotify track or album to the library of all opted in members of a segment.

Create a custom presave segment in your dashboard, then add a custom activity to the segment using one of the presave templates to get started.

Currently only available for Spotify.

Parameters
required *

apiKey *  string Your API access key
segmentid *  integer The ID of the presave segment that the members have opted into
activityid *  integer The ID of the custom presave activity created in your dashboard

Sign in with your developer account to use the console, or sign up here

Example Request

curl -X POST "https://api.theappreciationengine.com/v1.1/segment/321/presave?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&activityid=4327"
$curl = curl_init();

curl_setopt_array($curl, array( 
	CURLOPT_URL => "https://api.theappreciationengine.com/v1.1/segment/321/presave?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&activityid=4327", 
	CURLOPT_RETURNTRANSFER => true, 
	CURLOPT_ENCODING => "", 
	CURLOPT_MAXREDIRS => 10, 
	CURLOPT_TIMEOUT => 0, 
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, 
	CURLOPT_CUSTOMREQUEST => "POST", 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
import requests

url = "https://api.theappreciationengine.com/v1.1/segment/321/presave?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&activityid=4327"

headers = {}
payload = {}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text.encode('utf8'))
var request = require('request');
var options = {
	'method': 'POST',
	'url': 'https://api.theappreciationengine.com/v1.1/segment/321/presave?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&activityid=4327',
	'headers': {}
};
request(options, function (error, response) {
	if (error) throw new Error(error);
	console.log(response.body);
});