Understanding error responses
API errors return a JSON response with the following structure:| Field | Description |
|---|---|
type | URL identifying the error type with resolution steps |
title | Brief error summary |
status | HTTP status code |
detail | Detailed explanation of the problem |
instance | The API endpoint that produced the error |
logId | Unique identifier for support requests |
Common errors
Access Rule, Table, or View Already Exists
Resolve HTTP 409 naming conflicts when creating access rules, datasets, or views
Dataset Schema Incompatible with Connector
Resolve HTTP 400 schema validation failures when connecting datasets to connectors
General troubleshooting steps
- Read the error detail — The
detailfield usually explains exactly what’s wrong - Check the status code — Identifies the category of error (400 for validation, 409 for conflicts, etc.)
- Review your request — Look for the specific element mentioned in the error
- Check the
typeURL — Follow the link for detailed resolution steps

