Retrieve order subscription references
Overview
List the references associated with the subscription generated for an order.
Requirements
Parameters
Parameter | Type/Description |
---|---|
sessionID | Required (String) |
Session identifier, output of the Login method. An exception is thrown if the values are incorrect. | |
refNo | Required (String) |
The unique identifier of an order from the Avangate system. | |
pageNo | Optional (Int) |
Break down the subscription information using pagination into groups of 50 items (PartnerSubscription objects) per page. Example values:
Can be NULL. |
Response
Parameter | Type/Description | |
---|---|---|
PartnerSubscription |
Array of objects |
|
|
Details below |
|
|
SubscriptionReference |
String |
|
|
The unique reference associated with a subscription generated for a product included in a partner order. |
|
HasEndUserInformation |
Boolean |
|
|
True or false, depending on whether end user information is attached to the subscription. |
|
RegistrationStatus |
String |
|
|
Possible values:
|
|
RegistrationEmails |
String |
|
|
The email used by the end user in the registration process. Can be NULL. |
|
FullfilmentStatus |
String |
|
|
Fulfillment status possible values:
|
Request
<?php
require('PATH_TO_AUTH'); // Authentication example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/SOAP/02Authentication
require('PATH_TO_setPartner'); // setPartner example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/SOAP/06Reference/Partner/00Set_partner
$refNo = 'YOUR_ORDER_REFERENCE';
try {
$SubscriptionsGenerated= $client->getOrderSubscriptions ($sessionID, $refNo, $pageNo);
} catch (SoapFault $e) {
Echo "Subscriptions: " . $e->getMessage();
exit;
}
var_dump ("Subscriptions ", $SubscriptionsGenerated);
Errors
Error | Description |
---|---|
NOT_FOUND_PARTNER |
A partner must be set first. |
EMPTY_ORDER_REFERENCE |
Order reference not provided. |
INVALID_REFERENCE |
Invalid order reference. |