Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs-test.rye.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

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

input
required
An object containing the store’s URL.

Returns

canonicalDomain
The canonical domain name of the store.
requestID
An opaque identifier representing the request for this store.

Example - request

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

Example - response

Response
{
  "data": {
    "requestStoreByURL": {
      "canonicalDomain": "rye-test-store.myshopify.com",
      "requestID": "7206452499174533"
    }
  }
}

Webhooks

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