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

node

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

system

Next

nodes

Built with

Arguments

idStringRequired
The ID of the object.

Returns

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