GraphQL API
Warehouse API
GraphQL API
Warehouse API
Run warehouse operations including picking, stock, goods receipts, workstations, and exceptions.
API endpoint
Replace the path identifier.
https://api.pack.cloud/v1/warehouses/{warehouseId}/graphqlStart here
Learn the shared API behavior, then browse resources in the schema reference.
Getting startedMake your first authenticated request.→AuthenticationCreate an API key and send it safely.→OAuth integrationsConnect partner and platform applications.→Create products and ordersBuild a reliable ecommerce intake flow.→Search queriesFilter connections with structured expressions.→SortingOrder results with operation-specific sort keys.→PaginationFetch large connections with cursors.→Rate limitsHandle request throttling and query cost.→ErrorsHandle transport, GraphQL, and user errors.→
Make a request
Read the guidecurl --request POST "https://api.pack.cloud/v1/warehouses/{warehouseId}/graphql" \
--header "Authorization: Bearer $PACKCLOUD_TOKEN" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--data '{"query":"query { __typename }"}'Use a personal API key as the Bearer token. The resource identifier in the URL determines the request scope.