#fabrizio-regio_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/1357346677983281334
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
I don't understand what you're trying to do. Can you explain more or share a concrete example of something that is not doing what you expect?
Throught use of Api I can receive a list af all transaction ok! Can I use Stripe logic APP azure connector to achive the same goal?
"Transaction" can mean lots of different things. Do you mean payment intents? But generally yes the API has several List endpoints to get lists of payments/transactions, you can use them in pretty much any server context. If you're using a particular environment or third party SDK I can't say much about how to do that, but you can always fall back to a curl-like request construction.
This time I didn't understand......
However
Using the Stripe connector for Azure Logic App I can receive the same list of transactions that I receive from this call to the APIs d
GET
/v1/treasury/transactions
I don't know how that works unfortunately. The source of a request should not generally affect the API behaviour, so if the request is supported I would generally expect it to behave the same way.
Me too, honestly....
But from the documentation about your connector on Logic Apps I can't find any trace of it
๐ฆ
In the documentation
mentation that Microsoft provides of your connector at the url: https://learn.microsoft.com/en-us/connectors/stripe/#when-an-invoice-item-is-added
I do not find any method that provides the list of transactions as I find in the documentation on the API at the url:
https://docs.stripe.com/api/treasury/transactions/object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You have to ask the connector provider about what they support
But as i said, almost every platform/environment has a way to manually construct an HTTP request, and you can use our curl examples to build that request
https://docs.stripe.com/api/treasury/transactions/list?lang=curl
Perhaps something like this: https://learn.microsoft.com/en-us/answers/questions/1193607/http-action-on-azure-logic-apps
I know, I know... There is a small difference between the two adapters (HTTP, STRIPE) and how they are activated
With HTTP you will make the calls at intervals of time chosen by you, with the STRIPE one you will wake up as soon as a transaction is created on DB