#ferreirA
1 messages ยท Page 1 of 1 (latest)
All good ๐
thanks for ur help in advance
this is my issue
i'm having that error above when requesting to: GET: /v1/customers/search
this is the request
Looks like name: should be name~:?
or am I wrong
Ah we have an example here
https://stripe.com/docs/api/customers/search?lang=node
query: 'name:\'fakename\' ',
});```
yup
then
I am surprised by how accurate the error message is in the API response ๐
no way
I didnt notice
the response has the solution on that
and I was like, I might contact for help
NP! ๐ Happens to me a lot of times
how will I concatenate this ${usernameParsed}
a javascript var into that
query: 'name:\' usernameParsed \' ',
});```
is that possible
can it be:
query: `name:\'${usernameParsed}\' `,
haven't played around with this much so not sure.
try it out maybe
NP! ๐ Good luck!