We are integrating with Shopify using webhooks and API. We want to validate the data we receive and don't want to guess creating our own JSON schemas. Do you know a place or a way for getting JSON schemas we can trust for below data sources?
Webhooks:
1. orders/create
2. customers/create
API methods:
1. GET /admin/api/#{api_version}/checkouts.json - Retrieves abandoned checkouts
2. GET /admin/api/#{api_version}//products.json - Retrieves a list of products.
The corresponding resources as they are serialized in the admin should mirror exactly what's sent in the webhooks. Inspecting a customer resource, for example, should effectively blueprint what a payload will look like.
Alternatively, you could create a test webhook (or a real one) on a development store, and trigger that webhook to fire at your app, and use that to build out an expectation of the shape of the request.
From there, keep your eyes on the change log. If we ship anything that could change the expected shape of these resources, we intend to let you know what to expect.
Cheers.
This would be very useful, especially when using languages that are strongly typed. Is it possible to request this feature?
Json Schemas for all endpoints
User | Count |
---|---|
15 | |
8 | |
8 | |
7 | |
6 |