How can I add orders to the US walmart marketplace that will show in there released orders api? - walmart-api

I'm a developer trying to integrate the walmart marketplace orders api into a website. I have been using there sandbox which works well enough to a point. I want to actually try adding orders of real items that we've added in walmart but I'm unaware of a way to create test orders so that they would then show in the /v3/orders/released api. Is there no way to create orders like that using the API? Do I just actually purchase our items using walmart site and then cancel orders?
I was going to try their fulfillment api but our account isn't setup to use that since we fulfill the order ourselves.

Related

Stripe Connect with React and API only Rails

I'm having some issues with Stripe Connect. I have an API only backend in Rails and a frontend in React. I have successfully created Connect Accounts for new businesses which register in my frontend. However when a customer wants to buy something from the business, the payment doesn't work.
I create a Stripe::PaymentIntent in my rails backend when the frontend calls /business/payment_secret and return the client secret which is provided by the Payment Intent. The frontend then calls stripe.confirmCardPayment with the given client secret and the card which was used in the form. However, I always get "No such payment intent" error.
I've read somewhere that I need to add the stripeAccount config to the stripe object which is plugged into Elements. I tried to plug in the stripe account id of the business the customer is purchasing from but it didn't work.
Also it was very awkward to create the stripe object which has the business the customer is purchasing from can change depending on which items the user adds to the cart. Is there a standard way of doing that?
Or how does the payment process for connected accounts look like with an API only backend and a react frontend?
Thanks in advance
You need to review the various charge types to determine which fits your business needs, combined with the account type(s) you're using.
It sounds like you might be creating "direct charge" payment intents using the stripe-account header on your server then trying to confirm them in the client without that. You'll need to initialize Stripe.js using the same stripeAccount option.
The issue you're referring to with multiple potential accounts is one to think about in your customer flow. What if a customer wants to buy two items from two different connected accounts? For that flow you'd need to change your integration to use separate charges and transfers.

Google Now Bill Reminder

My company is looking to have Google Now Bill Reminders from emails to our clients so they are reminded when to pay.
We aren't looking to integrate a separate app or anything, we just want it directly through Google Now/Gmail.
My question is, is there any definitive structure our emails need to be in, or any information we must include for the Google Now reminders to work? Or does the Now card need to be integrated completely in order to work?
Any links etc to documentation regarding the bill reminder feature so we can look into this? Or if it does need to be integrated, are there any links to API integration so we can forward this to a developer?
Thanks in advance
Based from this Google Now documentation:
Google Now brings users the right information at just the right time. For example, Google Now already provides updates to restaurant and hotel reservations or flight information received in Gmail. By marking up email notifications to your users, you can use Google Now to bring them similar updates about your services and products.
Be mindful that only some types are supported in Google Now. For example, use Event Reservation type to declare a reservation for one or more guests at an event.
For your case, you can check on this blog and this forum. Basically, Google Now is most useful for its ability to contextualize information from your Calendar and Gmail to send you alerts when you actually need them. Google Now introduced a new feature that makes it easier to keep track of which phone/Internet/education loan bills are actually due. Source.

How to use the Stores and Orders API on Big Commerce to develop an iOS app?

I need to develop an iOS app for a single Big Commerce store that can be used by customers to make purchases . Can the Stores and Orders API be used directly in the iOS app without creating an app on Big Commerce?
The Bigcommerce Orders API does not allow you to process orders. It allows you to create an order processed elsewhere but not to run it through the Bigcommerce checkout process.
The Bigcommerce Stores API does not currently allow you to authenticate as a customer. You can however, create an order via the API. In theory, you could process the payment out of band in your app and create the order then via the API.
I've developed a simple Swift API and Cocoapod that I use for accessing the Bigcommerce Stores API via the Legacy API accounts: https://github.com/welbesw/BigcommerceApi

Eventbrite - buy multiple tickets

Is it possible to use the APIs to do payments to multiple events with one call to eventbrite?
Its actually not possible to purchase any tickets via the API. That work needs to be done by sending users to your Eventbrite event page.

Paypal API calls to get Order Details

I need your suggestion regarding which Paypal API to use for my following requirement:
I am developing a application for Order management & Shipping in which I need to fetch order details like Billing & Shipping Address information + Item/product details + Billing amount etc on behalf of various merchants.
I will be fetching the data in two ways:
1. Initial onetime fetch to get all orders till date.
2. Regular fetch to get new orders.
Can you please suggest which API calls will get me the required data?
So, I have found a solution for this through Paypal forum & API docs. Wanted to add the solution here so that it is helpful to other stackoverflow folks.
To lookup what transactions took place I can use the TransactionSearch API, say with the date range.
To get details of a particular transaction I can use GetTransactionDetails API.
Since I have to do it on behalf of various merchants, I can use the Paypal Permissions API to allow merchants to authenticate me for making API calls on there behalf.

Resources