stroz
stroz

Reputation: 1950

PHP date format for Paypal API PROFILESTARTDATE in CreateRecurringPaymentsProfile

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

Answers (1)

stroz
stroz

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

Related Questions