For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • QUERYclient
          • QUERYstore
          • QUERYsystem
          • QUERYnode
          • QUERYnodes
          • QUERYsupportedLocales
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminQueries

nodes

Example Query
1query ExampleQuery($ids: [String]) {
2 nodes(ids: $ids)
3}
Variables
1{
2 "ids": [
3 "example"
4 ]
5}
Example response
1{
2 "data": {
3 "nodes": [
4 {
5 "id": "example",
6 "currencies": {
7 "defaultCurrencyCode": "AED",
8 "enabledCurrencyCodes": [
9 "AED"
10 ]
11 },
12 "dateCreated": "DateTime",
13 "dateModified": "DateTime",
14 "externalId": "example",
15 "iconUrl": "example",
16 "isListableFromUi": true,
17 "isVisible": true,
18 "name": "example",
19 "platform": "example"
20 }
21 ]
22 }
23}
Fetches objects given their IDs.
Was this page helpful?
Previous

node

Next

supportedLocales

Built with

Arguments

idslist of StringsRequired
The IDs of the objects.

Returns

a list of optional Node
Channelobject
A channel.
OR
EventBridgeWebhookobject
An Amazon EventBridge webhook.
OR
HttpsWebhookobject
An https webhook.
OR
PubSubWebhookobject
A Google Cloud PubSub webhook.