List subscriptions API not returning credit card data

List subscriptions API not returning credit card data

Hello

When making the API call  https://subscriptions.zoho.com/api/v1/subscriptions?filter_by=SubscriptionStatus.All&customer_id=1111111111111
The subscriptions array we get back does not contain all the information that's in the API doc.  We are specifically looking for credit card info, so we know which free trials have a credit card and which don't.  

I should note that these subscriptions didn't have a credit card when they were created, but one was added using the 'Update card for a subscription' hosted page.

The data we get back looks similar to below.  Is there a way to list subscriptions in a way that includes credit card data?

(
    [code] => 0
    [message] => success
    [subscriptions] => Array
        (
            [0] => stdClass Object
                (
                    [customer_id] => 1111111111111
                    [subscription_id] => 222222222222
                    [name] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
                    [status] => non_renewing
                    [sub_total] => 9.99
                    [amount] => 9.99
                    [activated_at] => 2015-12-14
                    [trial_starts_at] => 2015-11-30
                    [trial_ends_at] => 2015-12-14
                    [trial_remaining_days] => 13
                    [current_term_starts_at] => 2015-11-30
                    [current_term_ends_at] => 2015-12-14
                    [expires_at] => 
                    [interval] => 1
                    [interval_unit] => months
                    [auto_collect] => 1
                    [created_time] => 2015-11-30T00:09:28-0500
                    [updated_time] => 2015-12-01T01:55:25-0500
                    [reference_id] => 
                    [salesperson_id] => 
                    [salesperson_name] => 
                    [currency_code] => USD
                    [currency_symbol] => $
                )

            [1] => stdClass Object
                (
                    [customer_id] => 1111111111111
                    [subscription_id] => 33333333333333
                    [name] => BBBBBBBBBBBBBBBBBBBBBBBBBBB
                    [status] => trial
                    [sub_total] => 9.99
                    [amount] => 9.99
                    [activated_at] => 2015-12-14
                    [trial_starts_at] => 2015-11-30
                    [trial_ends_at] => 2015-12-14
                    [trial_remaining_days] => 13
                    [current_term_starts_at] => 2015-11-30
                    [current_term_ends_at] => 2015-12-14
                    [next_billing_at] => 2015-12-14
                    [expires_at] => 
                    [interval] => 1
                    [interval_unit] => months
                    [auto_collect] => 1
                    [created_time] => 2015-11-30T00:16:00-0500
                    [updated_time] => 2015-11-30T00:16:00-0500
                    [reference_id] => 
                    [salesperson_id] => 
                    [salesperson_name] => 
                    [currency_code] => USD
                    [currency_symbol] => $
                )