#Vjacheslav
1 messages ยท Page 1 of 1 (latest)
It looks like %2212ab12lorem" has %22 in the beginning of it which maps to a quotation mark but you also have " at the end. Have you tried using %22 in both places or using " in both places?
in both places, I used quotation mark
It looks like one of them was formatted into a %22 but the other one wasnt't. Do you know why that might be?
I am testing this call myself, will see if I get similar behavior
Can you try this call again and send me the request ID from when you try it? https://stripe.com/docs/api/request_ids
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
req_o9dP3TAYOIGL3b
Hi ๐
I'm stepping in for @unkempt bluff . Let me take a look
I think you need to use ['field'] notation for nested properties instead of the . notation you are using
sorry are you meaning like this
payment_method_details['card']['fingerprint'] ?
Yes, that is what I think you need to do based on the examples in our docs
In this case, I got responce
"type": "invalid_request_error"
"message": "We were unable to parse your search query. Try using the format ......
double checked docs, ['field'] notation uses for metadata
For fingerprint uses payment_method_details.card.fingerprint:"fp" according to examples
Okay I conferred with my colleague and he was able to get that syntax to work.
How soon after the charge is created are you searching for it? These tables take a few minutes to index and become searchable
this charge was in 2020-04-08
Do you have the ID of one of these charges that should be returning for that fingerprint?
yes
Can you send the ID here? I can take a look to see why it might not be showing up in your search
How was the Charge created? Is there any chance it was created through a platform account?
Sorry, I don't know this
I just had a situation where I couldn't retrieve a charge despite seeing the fingerprint in my dashboard. It turns out the charge was made with a different account and that's why I was getting an empty response. I thought it might apply here but unfortunately the request to create the charge is past our retention window.
Never mind, both the Charge and the API request belong to the same account
is there any other way to retrieve those charges?
If you have a specified Customer or Payment Intent you could use those as filter parameters for a List request: https://stripe.com/docs/api/charges/list
Since we weren't able to figure out exactly what is going wrong here, I'm going to raise this question internally. If you want to be notified of what we find out you can write in to Support (https://support.stripe.com) and mention Snufkin. I will make sure you receive updates if/when we find out what is going on here.
Got, it. Thanks for help