-
-
Save matthewarkin/4cd4ef87122acb3561f29cbda079b219 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
include('library/init.php'); | |
\Stripe\Stripe::setApiKey("sk_test_xxxxxxx"); | |
$dp = \Stripe\Dispute::retrieve("dp_xxxxxxxxx"); | |
$dp->evidence["customer_name"]="[email protected]"; | |
$dp->evidence["shipping_date"] = "2016-03-06"; | |
$dp->save(); | |
echo "done"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment