You can get global node IDs of objects via the REST API and or webhooks, and then use them in GraphQL operations.
In this article
Table of Contents |
---|
You can access most objects in Scope (users, groups, scenarios, etc.) using either the REST API or the GraphQL API. With a recent update, you can find the global node ID of many objects from within the REST API and use these IDs in your GraphQL operations, and vice versa.
Note: In REST, the global node ID field is named node_id
, and in webhooks, the global node ID field is named resource_id
. In GraphQL, it's an id
field on the node
interface. For a refresher on what "node" means in GraphQL, see "Introduction to GraphQL."
In this article
Table of Contents |
---|
Putting global node IDs to use
...