Shopify Product&Collection Export Automation - shopify

I would like to discuss with you about a solution for an issue I`m having.
I have a marketplace, I want to allow Shopify sellers to sell on my marketplace.
I`m looking for the best solution to export the Shopify sellers products & Collections in a feed. I want to make this whole process to be automatic as possible. I dont want the sellers to have to deal with all the technical stuff.
Also, a feature the solution must contain is - I need to map the field once, to map the Shopify categories to my marketplace categories.
Do you know any solution, app or something that can help me?

For making your system automatic you can take reference about shopify webhooks Shopify webhooks
and you can take reference regarding listed public app marketplace solution on shopify

Related

Has anyone ever added google pay to a cybersource integration in shopify plus

Cybersource is the payment provider for my Shopify plus store. Within that I have payment methods which include VISA/Mastercard/Applepay. Google pay should also be available here but doesn't exist in the list of options. I can't believe Cybersource doesn't support Googlepay. When I have asked Cybdersource they say that the integration is managed by Shopify, but Shopify tell me I should use ShopifyPay if I want to have GooglePay, I can't believe this, it seems more likely that someone needs to refresh the API to make G-pay appear in the list of options.... does anyone have experience of this?
Thanks so much
I have been bouncing between Shopify help and Cybersource help they both just say it's down to the other.

Single page checkout for shopify

Kindly please suggest me the best way to single page checkout for Shopify store. As Shopify doesn't support any customization to the checkout page. Our requirement is to create a single page checkout. let me know how it is achievable.
Basic Shopify does not support customization in the checkout page. It is only available to Shopify plus Customer. Please visit here for more information.
You want a single page checkout you may need to create your own checkout process which will again require your store to be a Shopify Plus store. However, there are many Apps which can help you with single page checkout. You may want to use one of them if you don't want to build the whole functionality. You may want to check the below conversation - Link
You should not use Shopify if you want to make your own Checkout. Shopify is a hosted platform and they no longer want to let people play with the cash register themselves.
Of the few Apps that remain that do offer checkout outside of Shopify, you can see the hassles involved for customers. Why not just roll your own? If you can do your own checkout, hook up to an open source system instead where you can do that easier.
This is easy enough to do if you have the skills. Basically create an app that has a proxy page and change the theme's links replacing the paths to the checkout with paths to your proxied checkout.
There are a number of ways to collect payment info if you do this including using the draft_orders api to send the customer back to Shopify for final payment (not applicable for single page checkout but sometimes works well with the business reason that justifies a custom checkout in the first place)
You can also create a sales channel app that works much like the proxied app concept but has some more api capabilities.
However you really need a good business reason for doing this. Single page checkout was fashionable a few years ago but I've had as many customers go away from it as go towards it. Shopify has done quite a lot of work on their checkout and it works well (i.e. is fast and efficient) on all their supported platforms. Creating a custom checkout means your stuck maintaining it and are potentially increasing your liability if you take credit cards but have not received PCI certification.

How can I detect if a store has 'Advanced Shopify' through the API

Shopify has various levels of service that has include various features.
https://www.shopify.com/pricing
I only want to show features of my Shopify app, to customers that have those features.
Is there a way to detect, via the Shopify API, what version of Shopify my customers have?
For example I want to know if someone connecting to my app with their Shopify store, has 'Advanced Shopify' so I can show them specific features.
I have looked through the Shopify APIs a lot, https://help.shopify.com/api/reference, and googled it extensively, haven't seen anything.
You can get store type information by accessing /admin/shop.json of the store using api.
Check the "plan_name" attribute of the json.
Refer this for more.

What types of integrations are offered by BlueSnap?

I hear a lot about BlueSnap as a potential Payment Gateway for merchants like me, does anyone know what kind of account integrations the offer?
You can see the integration options in this page, the main questions you should ask yourself are whether you'll need to work with a product catlog or not - and whether you have the resources to develop with the API solutions.
If you're already using shopping carts, you can integrate Magento, PrestaShop or WooCommerce with BlueSnap.

Create orders with Shopify API

I am trying to transfer an e-commerce website to Shopify and was wondering if anyone has had experience creating orders with Shopify API? There are some 3rd party apps that provide such a service but none of them are working properly in my case.
You can import orders to your Shopify store using this API call: https://help.shopify.com/api/reference/order#create
If your a developer trying to do this you can just setup a simple, local run application, that would do this for you, I'm a developer but also run a Shopify website and do something similar with Ruby.
If you an end user the only option you really have is to hire someone to build a private app for you, depending on what excatly you need to achieve its not overly difficult.
If you want to learn yourself... https://vimeo.com/130247240
There is lots of help out there..
With Shopify API you can create customers and Orders, Here orders can be created through the API, but no payment information will be collected, and no transaction performed. You can mark the order with any payment status.
For details, you can check Shopify Orders API
https://shopify.dev/docs/admin-api/rest/reference/orders/order
Also, along with orders, you can import Customers using Customers API endpoints i.e
https://shopify.dev/docs/admin-api/rest/reference/customers
And also can update the Status of your newly imported orders to fulfillment using
https://shopify.dev/docs/admin-api/rest/reference/shipping-and-fulfillment