Not able to create merchant sandbox account for google wallet api for digital goods - android-pay

I am trying to integrate my django web app with google wallet api for digital goods to handle payments. I am using this tutorial: https://developers.google.com/wallet/digital/docs/tutorial
For creating sandbox merchant account for seller, I click on https://sandbox.google.com/checkout/inapp/merchant/signup.html.
After filling the form and click on submit button I am getting the error message:
There was an error completing sign-up. Learn more
I am not able to generate merchant ID or key.

Related

Does ebay have Sandbox for seller hub? If not, how could I test this

Am trying to integrate Ebay Merchant Account in my website, so that merchant can transfer his product from Ebay to my website using product id, SKU.
For that I need a Sandbox for ebay, unable to find seller hub in Sandbox account.
I successfully created a Sandbox account. Now expecting seller hub under that sandbox account.

Stripe Hosted Connect Custom Onboarding Not Completing In Test Mode

I am testing Stripe's Hosted Connect Custom Onboarding flow. After I create an account Id and an account link, I send the user to Stripe's hosted onboarding site. I am currently in Test mode at Stripe.
I am able to fill out all the data in the app but when I hit submit it never completes. All I receive is a spinning wheel. Are you able to create account on the hosted site in test mode?
There were two issues I was having. The tutorial I followed from Stripe did not include a return_url and a refresh_url. The reason the page kept spinning is because it did not have anywhere to return. The code below shows these links.
var accountLink = await stripe.accountLinks.create({
account: account.id,
success_url: 'http://localhost:4242?success',
failure_url: 'http://localhost:4242?failure',
refresh_url: 'https://globalexchange.com/about',
return_url: 'https://globalexchange.com',
type: 'custom_account_verification',
collect: 'eventually_due',
});
The other issue I was having was on the Stripe Dashboard. On the dashboard there is an option that will show test data. This was turned off. All of the account created with the app still spinning were created in test mode and they are now visible with the tab turned on.

Stripe Onboarding and external accounts

I am using Stripe Onboarding on my marketplace to ease the process of getting my customers info (custom accounts). But it does not ask the user his external (bank) account information so payouts stay disabled. Is it normal ?
I am using:
type: 'custom_account_verification',
collect: 'eventually_due',
using the other type does not change anything
Stripe does not collect external account information (bank account or debit card) today in the Hosted Onboarding page. They focus on collecting personal information about the owner(s) of the account/company.
Today, you need to collect this information separately on your website. The easiest solution is to collect bank account details and tokenize this client-side with Stripe.js and then create an external account server-side via the API.
Just for reference Stripe is partnering with Plaid for this.
https://stripe.com/docs/ach#using-plaid
https://plaid.com/docs/stripe/

Bank details for a custom stripe connect account

When dealing with Stripe's custom connect accounts, do I need to enter the bank information manually using their API or is it possible to get the bank information as part of the onboarding process that Stripe offers for custom accounts?
I am using the following onboarding to allow Stripe to handle the entire verification process for my custom connect accounts:
https://stripe.com/docs/connect/connect-onboarding
The hosted onboarding does not collect bank account details as part of the flow, by design(it only handles identity verification). This is information you'd need to collect from the user in your own onboarding forms and then pass to the API to create the payout destination via the ExternalAccount APIs https://stripe.com/docs/api/external_accounts
For example, as part of your onboarding flow, you might build a page that collects some basic information from the user like their email address, uses stripe.js to collect bank account details, and then submit to your server to create the Account object and then send the user through the hosted identity verification flow.

API for Google Wallet Merchant Center

When I log in to Wallet Merchant Center I can see a list of orders that correspond to my application's in-app purchases. Is there an API to get the same information?
I found the following page but I couldn't find the thing I'm looking for there.

Resources