Response
app_details
AppDetailsDetails about the sales channel, including its settings, metadata, and associated resources.
app_currencies
AppCurrencyInfoDetails about the currency supported by the sales channel, including its ID, name, code, and other attributes.
basic_details
AppBasicDetailsDetails of a specific sales channel including its branding, domain, and associated information.
contact_info
ContactInfoGet contact details of the sales channel.
features
AppFeatureResponse schema containing the application feature details.
integration_tokens
AppIntegrationTokensResponse object containing token information for the application.
languages
[AppLanguages]Object containing a list of supported languages.
owner_info
AppOwnerInfoDetails about the application, including its company, owner, domain, and other relevant properties.
Query
1query applicationConfiguration {2 applicationConfiguration {3 app_details {4 id5 description6 name7 app_type8 cache_ttl9 channel_type10 company_id11 created_at12 updated_at13 is_active14 is_internal15 owner16 token17 modified_at18 version19 slug20 mode21 status22 }23 app_currencies {24 application25 _id26 created_at27 modified_at28 }29 basic_details {30 id31 description32 name33 company_id34 slug35 }36 contact_info {37 id38 application39 copyright_text40 created_at41 updated_at42 version43 }44 features {45 id46 app47 created_at48 updated_at49 modified_at50 version51 }52 integration_tokens {53 id54 application55 created_at56 updated_at57 modified_at58 version59 }60 languages {61 code62 name63 }64 owner_info {65 id66 created_at67 description68 is_active69 name70 secret71 token72 mode73 slug74 status75 }76 }77}
Try it
Response
1{2 "applicationConfiguration": {3 "app_details": {4 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",5 "description": "A description",6 "name": "A name",7 "app_type": "live",8 "cache_ttl": 42,9 "channel_type": "channel_type",10 "company_id": 42,11 "created_at": "created_at",12 "updated_at": "updated_at",13 "is_active": true,14 "is_internal": true,15 "owner": "owner",16 "token": "token",17 "modified_at": "modified_at",18 "version": 30.7,19 "slug": "slug",20 "mode": "mode",21 "status": "status"22 },23 "app_currencies": {24 "application": "application",25 "_id": "_id",26 "created_at": "created_at",27 "modified_at": "modified_at"28 },29 "basic_details": {30 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",31 "description": "A description",32 "name": "A name",33 "company_id": 42,34 "slug": "slug"35 },36 "contact_info": {37 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",38 "application": "application",39 "copyright_text": "copyright_text",40 "created_at": "created_at",41 "updated_at": "updated_at",42 "version": 4243 },44 "features": {45 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",46 "app": "app",47 "created_at": "created_at",48 "updated_at": "updated_at",49 "modified_at": "modified_at",50 "version": 30.751 },52 "integration_tokens": {53 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",54 "application": "application",55 "created_at": "created_at",56 "updated_at": "updated_at",57 "modified_at": "modified_at",58 "version": 30.759 },60 "languages": [61 {62 "code": "code",63 "name": "A name"64 }65 ],66 "owner_info": {67 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",68 "created_at": "created_at",69 "description": "A description",70 "is_active": true,71 "name": "A name",72 "secret": "secret",73 "token": "token",74 "mode": "mode",75 "slug": "slug",76 "status": "status"77 }78 }79}
Was this section helpful?