#Shankar
1 messages · Page 1 of 1 (latest)
Can you share the request ID (req_xxx) which you faced the error? Here’s how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_YRUVkWIW7SUt3K
Thanks for sharing! Can you share the code which you use to post this request?
request body is enough?
{
"transfer_data.amount": "2000",
"capture_method": "manual",
"currency": "usd",
"customer": "cus_OImuFPNARHz6wP",
"transfer_data.destination": "acct_1NVqDjHKeg6QPoLO",
"transfer_group": "ORDER_10",
"amount": "10000",
"payment_method_types": [
"card"
]
}
POST /v1/payment_intents
Do you use curl?
It should be something like:
"transfer_data" : {
"destination": "acct_1NVqDjHKeg6QPoLO",
"amount": 2000
}
You can refer to the guide here: https://stripe.com/docs/api/payment_intents/create?lang=curl
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.