The Three APIs
Each API targets a different use case. Most integrations use one of the first two; SCX is specific to marketplace integrations.Common Conventions
Both ERP APIs target version2.0 of the API and include authentication headers described in Integration Overview. They differ in pagination shape:
- REST uses page-based pagination with
pageNumberandpageSizequery parameters, returning a wrapped envelope withitems[]and page metadata - GraphQL uses cursor-based pagination with
firstandaftervariables, returningnodes[]and apageInfoobject
What’s Next?
GraphQL Playground
Try queries and mutations interactively against your ERP instance.
REST API Reference
Browse all REST API endpoints with request/response schemas.
Integration Overview
Base URLs, authentication, and required headers.
Pagination
The full page-based pagination contract.