We have a SaaS platform for video based training (https://uqualio.com). As part of this the customers can make a free trial with 14 days before their credit card is charged. The customer is created and so is the subscription as starting in 14 days. The information sent to Stripe does not include any customer id directly so I cannot use the Stripe information to initiate the correct action in my app, when a new trial is created. Current meta data This is what HubSpot sends to Stripe. "metadata": { "portalId": "8169108", "fullPaymentAttemptId": "4907664", "hs_pmguid": "d7e93e8d-9327-4fbe-b095-dbd9dfb3dcdb", }, Add to meta data The meta must have the customer id and also the deal id created. "metadata": { "portalId": "8169108", "fullPaymentAttemptId": "4907664", "hs_pmguid": "d7e93e8d-9327-4fbe-b095-dbd9dfb3dcdb", "customerId": "79222933083", "dealId": "29177687402", }, Ideally we can map what meta data fields to add, but these two would solve my issue.
... Mostrar más