query

applicationConfiguration

Get details of the current sales channel.
Response
app_details
AppDetails
Details about the sales channel, including its settings, metadata, and associated resources.
app_currencies
AppCurrencyInfo
Details about the currency supported by the sales channel, including its ID, name, code, and other attributes.
basic_details
AppBasicDetails
Details of a specific sales channel including its branding, domain, and associated information.
contact_info
ContactInfo
Get contact details of the sales channel.
features
AppFeature
Response schema containing the application feature details.
integration_tokens
AppIntegrationTokens
Response object containing token information for the application.
Object containing a list of supported languages.
owner_info
AppOwnerInfo
Details about the application, including its company, owner, domain, and other relevant properties.
Query
1query applicationConfiguration {
2 applicationConfiguration {
3 app_details {
4 id
5 description
6 name
7 app_type
8 cache_ttl
9 channel_type
10 company_id
11 created_at
12 updated_at
13 is_active
14 is_internal
15 owner
16 token
17 modified_at
18 version
19 slug
20 mode
21 status
22 }
23 app_currencies {
24 application
25 _id
26 created_at
27 modified_at
28 }
29 basic_details {
30 id
31 description
32 name
33 company_id
34 slug
35 }
36 contact_info {
37 id
38 application
39 copyright_text
40 created_at
41 updated_at
42 version
43 }
44 features {
45 id
46 app
47 created_at
48 updated_at
49 modified_at
50 version
51 }
52 integration_tokens {
53 id
54 application
55 created_at
56 updated_at
57 modified_at
58 version
59 }
60 languages {
61 code
62 name
63 }
64 owner_info {
65 id
66 created_at
67 description
68 is_active
69 name
70 secret
71 token
72 mode
73 slug
74 status
75 }
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": 42
43 },
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.7
51 },
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.7
59 },
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}