Unique identifier that can be used to register or retrieve a specific API.
Example: mendix.EditorsAPI, mycompany.MyFunkyAPI
Adds a new export mapping document to the specified container.
The ID of the container where the export mapping will be added. It could be a module or folder.
Optionaloptions: AddMappingOptionsOptions for initializing the export mapping, including its name and an optional
selectStructure to associate a JSON structure by qualified name, select specific element paths,
and optionally auto-map elements.
A promise that resolves to the newly created export mapping document.
Adds a new mapping document to the specified container.
The ID of the container where the mapping will be added. It could be a module or folder.
Optionaloptions: AddMappingOptionsOptions that specify how the mapping will be initialized. Includes a name and an optional selectStructure
configuration to associate a JSON structure by qualified name, select specific element paths, and optionally auto-map elements.
A promise that resolves to the newly created mapping document.
Clears all entity and attribute mappings from the specified mapping document.
The ID of the mapping document to clear.
A promise that resolves when all element mappings have been cleared.
Optionaloptions: ExportMappingCreationOptionsSets entity and attribute mappings on the specified mapping document's elements.
The ID of the mapping document to update.
The mapping objects that define entity and attribute assignments for each element path.
A promise that resolves when the element mappings have been applied.
API for working with export mapping documents.
An export mapping defines how Mendix entities are serialized into outgoing XML or JSON. Use this API to programmatically create export mapping documents inside a module or folder, optionally pre-configure them with a JSON structure and selected element paths, and auto-map elements to domain model entities and attributes. Once created, you can also set or clear entity and attribute assignments on the mapping's elements via inherited methods.