Need to manage API keys, view logs, or check usage?Open the Developer portal →

GraphQL mutations

Write operations on the public schema.

pullDatapoints

Billable. Each successful call debits credits from the owning account.

Schema

input PullDatapointInput {
  materialIds: [ID!]!
}

type PullDatapointResult {
  pulledMaterialIds: [ID!]!
  creditsDebited: Int
  message: String
}

Mutation

mutation Pull($input: PullDatapointInput!) {
  pullDatapoints(input: $input) {
    pulledMaterialIds
    creditsDebited
  }
}

Variables panel:

{
  "input": {
    "materialIds": ["m_8c2…", "m_a4d…"]
  }
}