Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP date format for Paypal API PROFILESTARTDATE in CreateRecurringPaymentsProfile

Tags:

php

paypal

What PHP date format should I use for PROFILESTARTDATE when calling CreateRecurringPaymentsProfile using the Paypal API?

The Paypal docs say: #Billing date start, in UTC/GMT format

like image 726
stroz Avatar asked Dec 01 '22 15:12

stroz


1 Answers

Couldn't find a good answer anywhere, but this ended up working great. Hope this helps someone!

'PROFILESTARTDATE' => gmdate("Y-m-d\TH:i:s\Z")
like image 116
stroz Avatar answered Dec 09 '22 11:12

stroz