The Entity to Entity Service (E2ES) lets you define, store, and manage reusable entity mappings that describe how to copy or move data from a source entity to a target entity. Think of an E2ES mapping as a saved “routing slip” for data: it names the source, the destination, the mode (insert/update/upsert), optional filters, and the field-to-field mapping.
Use E2ES when you need to:
Standardize data movement rules across environments and teams
Reuse the same mapping repeatedly
Version and maintain mapping definitions without hardcoding them in integration code
Manage mappings by ID or by name
What you can do with E2ES
List all mappings
Use GET List entity mappings to return all mappings for the tenant and metadata. Use this as your “mapping catalog.”
Create a mapping
Use POST Create entity mapping to create a new mapping definition.
Retrieve, update, or delete a mapping by ID
Use GET Get entity mapping, PATCH Update entity mapping, and DELETE Delete entity mapping to perform ID-based operations with existing mappings.
Retrieve, update, or delete a mapping by name
Use GET Get entity mapping, PATCH Update entity mapping, and DELETE Delete entity mapping to perform name-based operations with existing mappings.