Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 436 Bytes

DETAIL.md

File metadata and controls

19 lines (16 loc) · 436 Bytes

Detailing charge

To detail a charge, you can use:

$response = $apiGN->detailCharge()
                  ->chargeId($chargeId)
                  ->run()
                  ->response();

Detailing subscription

To detail a subscription, you can do this:

$response = $apiGN->detailSubscription()
                  ->subscriptionId($subscriptionId)
                  ->run()
                  ->response();