I want to integrate my POS with Shofy

Anyone who can guide me with the APIs and the process to integrate my POS with Shopify portals of my clients.
Fetch products from my portal to shopify and the shopify orders to POS

Hi @Anand_Kaley

Can you unpack this scenario a bit more?

Fetch products from my portal to shopify and the shopify orders to POS

Have you read through the docs here: Apps in POS

@Liam-Shopify - We have a POS named as RECAHO. I want Shopify Orders to land on my POS which is powered by Recaho. And also an option to Push Products from Recaho POS to Shopify portal.

To get new orders you could either subscribe to the order create webhook, or query orders using the GraphQL Admin API.

To push products from another platform to Shopify, you’d use the create product mutation, eg:

mutation {
  productCreate(product: {title: "Cool socks", productOptions: [{name: "Color", values: [{name: "Red"}, {name: "Blue"}]}, {name: "Size", values: [{name: "Small"}, {name: "Large"}]}]}) {
    product {
      id
      title
      options {
        id
        name
        position
        optionValues {
          id
          name
          hasVariants
        }
      }
    }
    userErrors {
      field
      message
    }
  }
}