Pabbly connect: stripe to twilio whatsapp

JamesMsasi

Member
I have two payment links from stripe, when I made a workflow to send a message, one of the links works but the other one doesn't this is the error that shows "
{
"error > message": "Unrecognized request URL (GET: /v1/customers/). If you are trying to list objects, remove the trailing slash. If you are trying to retrieve an object, make sure you passed a valid (non-empty) identifier in your code. Please see https://stripe.com/docs or we can help at https://support.stripe.com/.",
"error > type": "invalid_request_error"
}
"
Please help
 
P

Pabblymember11

Guest
Hey @JamesMsasi

It seems that during a particular execution, there was an instance without a customer ID, which was essential for the "Stripe: Retrieve a Customer by ID" action step. Consequently, this action didn't execute as the necessary customer ID was missing.

To rectify this automation issue, a solution could be implementing a Filter action step. This step would only proceed when the customer ID is obtained from the trigger response. This ensures that the action requiring the customer ID will run only when the ID is present, making the automation more reliable and efficient.



2023-12-05_16h57_19.png
 
Top