Requesting a store is currently only available for Shopify.

In order to request all products from an Amazon merchant, you must issue individual requests for each product using requestAmazonProductByURL.

It can take up to 12 hours for the requested store to be fully tracked.


Arguments

An object containing the store’s URL.

Returns

requestID
String!

An opaque identifier representing the request for this store.

Example - request

mutation RequestStoreByURL {
  requestStoreByURL(input: { url: "https://rye-test-store.myshopify.com" }) {
    requestID
  }
}

Example - response

Response
{
  "data": {
    "requestStoreByURL": {
      "requestID": "7206452499174533"
    }
  }
}

Webhooks

Calling this mutation will subscribe your developer account to product webhooks for all products in the requested store.