data

I am a developer of order taking software. Some of my customers would like for me to send their customer data and order data to shopify. How can I do this?

To send customer data and order data from your order taking software to Shopify, you can use the Shopify API. The Shopify API allows you to create and manage customers, orders, and other store data programmatically.

Create a private app

Authenticate your app

Send customer data

Send order data

Handle errors and exceptions

How do I get a copy of the API?

Marshall Thomas

Hi @deadballfan

You can find Shopify Admin API reference docs here. For importing customers, you can use the customerCreate mutation and for importing order data, you’ll need the draftOrderCreate and draftOrderComplete mutations.

Hope that helps!