Zid Themes Library: API Integration The Blog component of the Zid Themes Library includes functions to access blog-related data within the Zid platform, such as fetching specific blog posts and retrieving FAQs and shipping/payment information. Fetch Blog Post# Description : Retrieves details of a specific blog post.id
 - Unique identifier of the blog post.
slug
 - Slug of the blog post. Use either id
 or slug
.
Usage :Â zid.store.page.fetch({id, slug}).then(function (response) { /* Handle response */ });
Fetch FAQs# Description : Retrieves frequently asked questions.Usage :Â zid.store.page.fetchFaqs().then(function (response) { /* Handle response */ });
Function :Â FetchShippingAndPayment
Description : Fetches shipping and payment information.Usage :Â zid.store.page.fetchShippingAndPayment().then(function (response) { /* Handle response */ });
Modified at 2024-11-05 12:39:45