Query to get details about application content like blog, faq, faqCategories etc.
Response
announcements
AnnouncementsList all current announcements in the application.
data_loaders
DataLoadersList all the data loaders that are enabled for an application.
faq_categories
FAQCategoriesList categories for organizing FAQs.
faqs
FAQsList frequently asked questions and answers.
blogs
BlogsList all the blogs against an application.
landing_page
LandingPageGet content of the application's landing page.
legal_information
LeagalInformationGet legal policies for an application which includes Terms and conditions, return policy, shipping policy and privacy policy.
seo_configuration
SeoSchemaGet search engine optimization configurations of an application. Details include the title, description and an image.
support_information
SupportInformationGet customer support contact details. Contact Details can be either a phone number or an email-id or both.
tags
[TagSchema]Lists HTML tags to power additional functionalities within an application.
navigations
NavigationsGet the navigation link items which can be powered to generate menus on application's website or equivalent mobile apps.
pages
PagesLists all Custom Pages.
slideshows
SlideshowsList slideshows along with their details.
custom_fields
CustomFieldsList custom fields attached to a particular resource by using the resource.
Query
1query applicationContent {2 applicationContent {3 announcements {4 announcements5 refresh_pages6 refresh_rate7 }8 landing_page {9 custom_json10 id11 application12 archived13 platform14 slug15 }16 legal_information {17 id18 application19 created_at20 policy21 returns22 shipping23 tnc24 updated_at25 }26 seo_configuration {27 id28 app29 cannonical_enabled30 created_at31 robots_txt32 sitemap_enabled33 updated_at34 additonal_sitemap35 }36 support_information {37 id38 application39 created40 created_at41 updated_at42 }43 tags {44 id45 attributes46 content47 name48 pages49 position50 sub_type51 type52 url53 }54 }55}
Try it
Response
1{2 "applicationContent": {3 "announcements": {4 "announcements": {},5 "refresh_pages": [6 "refresh_pages"7 ],8 "refresh_rate": 429 },10 "landing_page": {11 "custom_json": {},12 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",13 "application": "application",14 "archived": true,15 "platform": [16 "platform"17 ],18 "slug": "slug"19 },20 "legal_information": {21 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",22 "application": "application",23 "created_at": "created_at",24 "policy": "policy",25 "returns": "returns",26 "shipping": "shipping",27 "tnc": "tnc",28 "updated_at": "updated_at"29 },30 "seo_configuration": {31 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",32 "app": "app",33 "cannonical_enabled": true,34 "created_at": "created_at",35 "robots_txt": "robots_txt",36 "sitemap_enabled": true,37 "updated_at": "updated_at",38 "additonal_sitemap": "additonal_sitemap"39 },40 "support_information": {41 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",42 "application": "application",43 "created": true,44 "created_at": "created_at",45 "updated_at": "updated_at"46 },47 "tags": [48 {49 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",50 "attributes": {},51 "content": "content",52 "name": "A name",53 "pages": [54 {}55 ],56 "position": "position",57 "sub_type": "external",58 "type": "js",59 "url": "https://website.com"60 }61 ]62 }63}
Was this section helpful?