One endpoint, one method
Unlike REST, which uses many endpoints (GET /users, POST /dashboards, etc.), GraphQL uses a single endpoint for all operations:
HTTP 200 does not mean success
This is the most important difference from REST. GraphQL can return HTTP 200, even when the operation fails. Do not check the HTTP status code to determine success, always inspect the response body. Errors appear in anerrors array:
status.code field in the response data:
Postman setup
To call the WisdomAI GraphQL API from Postman:- Set method to POST
- URL:
https://{ACCOUNT}.askwisdom.ai/graphql - Headers:
Content-Type: application/jsonAuthorization: Bearer <your_token>
- Body → raw → JSON:
Common mistakes
Related articles
GraphQL API overview
Endpoint, authentication, and error handling
User management
Create, update, and manage users via API
Queries
Available read operations
Mutations
Available write operations

