← Back to docs

Nova API

Nova is SyncToScale’s AI layer, designed to assist with field mapping, error classification, and workflow intelligence. Nova endpoints return structured suggestions you can apply or review.

POST Request AI-generated suggestions

Mapping suggestions

Nova can analyze payloads and schemas to suggest field mappings based on naming patterns and historical usage.

POST /nova/v1/mapping/suggest
{
  "source_payload": {
    "fname": "Jordan",
    "workEmail": "jordan@example.com"
  },
  "target_schema": {
    "first_name": "string",
    "email": "string"
  }
}
{
  "suggested_mapping": {
    "fname": "first_name",
    "workEmail": "email"
  }
}

Error classification

Nova can classify workflow errors and recommend next steps to speed up troubleshooting and remediation.

POST /nova/v1/errors/classify
{
  "error_code": "invalid_permission",
  "message": "User lacks write access to directory"
}
{
  "category": "insufficient_permissions",
  "recommended_fix": "Re-authenticate connection with directory.write scope"
}

Human-in-the-loop

Nova responses are designed to support human review. Suggested mappings and classifications should be validated before being applied to production workflows.