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

Retrieve all fields

Use the getSubscriptionAdditionalInformation method to retrieve all the additional information fields belonging to a subscription.

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.

Request sample

<?php

require('PATH_TO_AUTH');

$subscriptionReference = 'F27CFE06ED';

try {
    $subscriptionInfo = $client->getSubscriptionAdditionalInformation($sessionID, $subscriptionReference);
}
catch (SoapFault $e) {
    echo "subscriptionInfo: " . $e->getMessage();
    exit;
}
var_dump("subscriptionInfo", $subscriptionInfo);

Response parameters

Parameter
Type / Description

AdditionalSubscriptionInformation

Array of objects Contains information for all the additional information fields existing on a subscription.

fieldName

String The name of the additional information field. Used for identifying additional information fields.

fieldValue

String The value of the additional information field.

Last updated

Was this helpful?