#shreyasb_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/1380605631936991312
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Could you also share the request ID that was working in test?
req_plgMYT93DkGId3
- The one working in dev (https://dashboard.stripe.com/test/logs/req_plgMYT93DkGId3) was GET
/v1/payouts - The one not working in live (https://dashboard.stripe.com/logs/req_1uWX8NK2Zngo3N) was GET
/v1/treasury/inbound_transfers
In https://docs.stripe.com/api/treasury/inbound_transfers/list?api-version=2025-05-28.basil&rds=1, created is not a supported parameter for GET /v1/treasury/inbound_transfers
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
They are two different API endpoints. Different API endpoints have different specifications
In https://dashboard.stripe.com/test/logs/req_cYacaeYzQowynk, you didn't set created in test mode whereas you did in live mode
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
The request bodies were different between test and live mode
That's so odd -- is there a chance it would be omitted in test if it isn't supported
Test:
{
financial_account: "fa_1Oi6faQ36IMi5Yw6UmUOY8Rw",
limit: "100",
status: "succeeded",
}
Live:
{
created: {
gte:
"1749096613"
,
},
financial_account: "fa_1QUDqjPqGqjCMv4pEsGWwSNv",
limit: "100",
status: "succeeded",
}
The issue here was with created parameter that isn't supported in GET /v1/treasury/inbound_transfers endpoint
because it's the same code that i'm running
is there a chance it would be omitted in test if it isn't supported
Not really from the SDK level. I'd recommend removingcreatedparameter from your integration
gotcha -- makes sense
is there any way to filter by created?
seems like v2 supports it
is there any way to filter by created?
Unfortunately not for this specific/v1/treasury/inbound_transfersendpoint
The only way is to list all and filter in your system
perfect -- thanks so much for the help!