Documentation Index
Fetch the complete documentation index at: https://docs.wisdom.ai/llms.txt
Use this file to discover all available pages before exploring further.
ResponseStatus is returned by mutations to indicate whether the operation succeeded. It is a distinct type from the UserStatus enum — mutation responses use this object, not the enum.
Fields
A code indicating the result of the operation.
OK means the operation succeeded; any other value indicates failure.A human-readable message describing the result. On failure, this field contains the error details.
StatusCode enum
Example values
Success
Failure
Not found
GraphQL returns HTTP 200 even when
status.code is not "OK". Always check the code field in the response body to determine success or failure. See Error handling.When querying mutations, you must explicitly request
{ status { code message } } — requesting just { status } returns nothing.Operations that return ResponseStatus
Create users
Returns ResponseStatus
Set user attributes
Returns ResponseStatus
Delete users from workspace
Returns ResponseStatus