#4fortune8-update-paymentintent
1 messages ยท Page 1 of 1 (latest)
HI ๐
Can you track down the request ID for one of these requests so I can check what might be going on?
They will start with req_
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
4fortune8-update-paymentintent
Thanks, taking a look
I see you passing strings for both the amount and the application_fee_amount. However, both properties on the Payment Intent do reflect those values
So i also did another one
req_xO4V1tvOJhEiXd
req.body.id,
{ amount: req.body.amount,
application_fee_amount: 100,
},```
still gives ```Request POST body
{
"application_fee_amount": "1",
"amount": "10000"
}```
The POST body is```
{
application_fee_amount: "1",
amount: "10000",
}
You need to examine your code to be sure you are passing what you expect
Im just confused on why amount updates, but application_fee_amount: doesnt