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
      • Overview
          • QUERYaccount
          • QUERYnode
          • QUERYnodes
          • QUERYsystem
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAccountQueries

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 "accountId": "example",
6 "checkoutUrl": "example",
7 "items": {
8 "pageInfo": {
9 "hasNextPage": null,
10 "hasPreviousPage": null,
11 "startCursor": null,
12 "endCursor": null
13 },
14 "edges": [
15 {
16 "node": null,
17 "cursor": null
18 }
19 ]
20 },
21 "status": "COMPLETE"
22 }
23 }
24}
Fetches an object given its ID.
Was this page helpful?
Previous

account

Next

nodes

Built with

Arguments

idStringRequired
The ID of the object.

Returns

an optional Node
Checkoutobject

A container for all information needed to charge a Merchant for products on a one-time or recurring basis.

OR
Subscriptionobject

A one-time or recurring charge for a Product created as a result of a Merchant completing a Checkout.