Get integration mapping metadata for a unified-model resource method ​
Returns the merged JSON schema, default query/body, and documentation link for a single integration mapping (e.g. crm.contacts.list on salesforce). Useful for inspecting what a unified call will accept and return without touching a real integrated account.
Unlike most unified endpoints, this one does not require integrated_account_id — it operates against the integration mapping installed in the caller's environment, so it's safe to call during local mapping iteration. The response includes only the fields actually populated by response_mapping for the chosen integration (computed via getResponseFields).
Use this together with truto unified test-mapping (Truto CLI) or as the basis for client-side validation before patching environment-unified-model-resource-method.
Endpoint ​
GET /unified/{model_name}/{resource_name}/{integration_name}/meta/{method}Integrations supported
Path parameters ​
The name of the unified model (e.g. crm).
crmThe name of the resource within the model (e.g. contacts).
contactsThe name of the integration to inspect the mapping for (e.g. salesforce).
salesforceThe unified method (e.g. list, get, create, update, delete).
listResponse Body ​
The unified method this metadata describes.
listThe unified-model resource JSON schema.
object
Map of property name → JsonSchemaObjectProperties.
Vendor documentation URL for this method, if set on the integration mapping.
A subset of schema containing only the fields actually populated by response_mapping for this integration.
object
Map of property name → JsonSchemaObjectProperties.
JSON-schema-style description of the supported query parameters for this method.
object
Map of property name → JsonSchemaObjectProperties.
JSON-schema-style description of the supported request body for this method.
object
Map of property name → JsonSchemaObjectProperties.
Default query parameters always applied by the integration mapping. Values may be templated JSONata expressions.
Default request body always applied by the integration mapping. Values may be templated JSONata expressions. Object or null (arrays are allowed at runtime but rare).