Quantcast
Channel: e-conomic Global API Forum
Viewing all articles
Browse latest Browse all 2527

Get sale price of subscriptions

$
0
0

Hi,

I am trying to list all subscribers and get their sales price. In order to do that I need to go :

from Subscriber to Subscription (throught Subscription handle of Subscribers entity)

from Subscription  to SubscriptionLine(throught Subscription handle in SubscriptionLine)

How do I go from Subscription line to product? Following the model schema v1.4.2 of your specs.

What I initially tried was:

$subscriber = $this->client->Subscriber_GetData(array('entityHandle' => array('SubscriberId' => $subscriber_handle)))->Subscriber_GetDataResult;
$subscription = $this->client->Subscription_GetData(array('entityHandle' => array('Id' => $subscription_handle)))->Subscription_GetDataResult;
$product = $this->client->Product_GetData(array('entityHandle' => array('Number' => $subscription->Number)));
Going from subscriber to subscription and then directly to product in order to replicate the subscriptions table found under customers->more->subscriptions.
 
    

 


Viewing all articles
Browse latest Browse all 2527

Trending Articles