GraphQL API
Organization API
GraphQL API
Organization API
Manage orders, products, customers, returns, shipments, integrations, and organization settings.
API endpoint
Replace the path identifier.
https://api.pack.cloud/v1/organizations/{organizationId}/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/organizations/{organizationId}/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.