JSON Schemas

This provider-integration endpoint exposes Alution's own model request schema. Use it to discover native fields and validation constraints before building a mapping UI. It is distinct from importing a provider's fields through Custom Fields & Mappings.

GET/api/v1/schemas/{alias}.schema.json

Get a model schema

Required scope: schemas:read. {alias} must be a supported kebab-case model alias; unsupported aliases return 404. The .schema.json suffix is part of the route.

curl https://{tenant}.alution.cloud/api/v1/schemas/contact.schema.json \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Accept: application/json"

The response is generated from the current API request definition, so clients should consume its returned $schema, properties, required fields, and constraints instead of relying on a copied static field list.

Was this page helpful?