Reputation: 1950
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
Upvotes: 4
Views: 1994
Reputation: 1950
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")
Upvotes: 18