Welcome to the Redo v3 API
The v3 API is a GraphQL API for managing your product catalog, inventory, purchasing, suppliers, and webhooks. Unlike the v2 REST API, you send a singlePOST
request describing exactly the data you want, and receive exactly that shape
back.
Data endpoint: https://api.getredo.com/v3/account/{accountId}/graphql
Schema endpoint: https://api.getredo.com/v3/graphql-schema
All operations go to the single data endpoint over POST. The schema endpoint
is read-only introspection and requires no authentication.
Quick start
Introspection
The schema is self-describing. Point any GraphQL client (GraphiQL, Apollo Sandbox, Insomnia,graphql-codegen) at the schema endpoint to explore
types, fields, and docs:
__schema, __type) only — no
account data is reachable there, so no token is needed.
Next steps
1
Authenticate
Create an API token and learn the bearer
scheme.
2
Send operations
Learn how queries and mutations
are structured.
3
Page through lists
Understand cursor-based pagination on
connections.
4
Explore the schema
Browse the reference, starting with
Catalog.