Execute GraphQL operation
documentedSubmit GraphQL queries against the Payroll API (same GraphQL endpoint as other payroll-related data).
POST Production: /graphqlPayrollno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://qb.api.intuit.com/graphql" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"query":"query GetPayrollCompensations($limit: Int){ payrollEmployeeCompensations(first: $limit) { edges { node { id name } } } }","variables": {"limit": {{$limit}}},"operationName":"GetPayrollCompensations"}'