#sheva_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1325788850945130587
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- sheva_api, 3 days ago, 10 messages
Hi, let me help you with this.
I am not quite sure what you mean.
What is "declined payment intent log"?
What do you mean by "rerun it"?
Event: payment_intent.canceled
Event data:
{
"id": "pi_3QaDdBBSpBHYMs4Q0LJnLjBF",
"object": "payment_intent",
"last_payment_error": null,
"livemode": true,
"next_action": null,
"status": "canceled",
"amount": 4900,
"amount_capturable": 0,
"amount_details": {
"tip": {
}
},
"amount_received": 0,
"application": null,
"application_fee_amount": null,
"automatic_payment_methods": null,
"canceled_at": 1735289150,
"cancellation_reason": "void_invoice",
"capture_method": "automatic",
"client_secret": "pi_3QaDdBBSpBHYMs4Q0LJnLjBF_secret_hjWzaUfiLO2CNCRz0B2sp0Sui",
"confirmation_method": "automatic",
"created": 1735206325,
"currency": "usd",
"customer": "cus_RT9xP3afLdNkb4",
"description": "Micro plan (24500 Results) - $2 per 1K results",
"invoice": "in_1QaDdABSpBHYMs4Q6yEuqlu1",
"latest_charge": "py_3QaDdBBSpBHYMs4Q0y36pmxm",
"metadata": {
},
"on_behalf_of": null,
"payment_method": null,
"payment_method_configuration_details": null,
"payment_method_options": {
"card": {
"installments": null,
"mandate_options": null,
"network": null,
"request_three_d_secure": "automatic"
},
"link": {
"persistent_token": null
},
"paypal": {
"preferred_locale": null,
"reference": null
}
},
"payment_method_types": [
"card",
"link",
"paypal"
],
"processing": null,
"receipt_email": null,
"review": null,
"setup_future_usage": "off_session",
"shipping": null,
"source": null,
"statement_descriptor": null,
"statement_descriptor_suffix": null,
"transfer_data": null,
"transfer_group": null
}
I need to rerun it with "setup_future_usage": null for it not be declined by RBI (Reserve Bank of India)
If it's cancelled, you will need to create a new PaymentIntent with the same parameters.
Yes, sure, what information should I include in a new PaymentIntent?
And just to make sure, I can't trigger it via Stripe dashboard right? only via some script?
The same you included in the old PI, except setup_future_usage.
No
Alright, thanks!