For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieve eligible campaigns

Use the getEligibleChurnCampaigns method to retrieve all the eligible campaigns for a specific subscription with data in a specific language.

Request parameters

Parameter
Type / Description

sessionID

Required (string) Session identifier, the output of the Login method. Include sessionID into all your requests. 2Checkout throws an exception if the values are incorrect. The sessionID expires in 10 minutes.

SubscriptionReference

Required (string) Unique, system-generated subscription identifier.

Language

Required (string) The language abbreviation in which messages are translated.

Request sample

<?php
require('PATH_TO_AUTH');
$subscriptionReference = '351D8F557E';
$languageCode          = 'en';
$jsonRpcRequest = [\
    'method' => 'getEligibleChurnCampaigns',\
    'params' => [$sessionID, $subscriptionReference, $languageCode],\
    'id' => $i++,\
    'jsonrpc' => '2.0'\
];
var_dump(callRPC((object)$jsonRpcRequest, $host, true));

Response parameters

Last updated

Was this helpful?