v10

latestOpenAPI 3.0.1raw.githubusercontent.com2025-12-033223581.2 MB
External Mapping

Retrieve External Mapping

Retrieve an External Mapping with the given UUID.

This endpoint enables you to retrieve the External Mapping with the specified UUID for a specific Organization.

get/organizations/{orgId}/externalmappings/{id}

Path parameters

orgIdstring required

The unique identifier (UUID) of your Organization. The Organization represents your company as a direct customer of our service.

idstring required

The unique identifier (UUID) of the External Mapping to retrieve.

Response

Returns the External Mapping

idstring required

The UUID of the entity.

versioninteger

The version number:

  • Create: On initial Create to insert a new entity, the version is set at 1 in the response.
  • Update: On successful Update, the version is incremented by 1 in the response.
dtCreatedstring date-time

The DateTime when this item was created (in ISO-8601 format).

dtLastModifiedstring date-time

The DateTime when this item was last modified (in ISO-8601 format).

createdBystring

The ID of the user who created this item.

lastModifiedBystring

The ID of the user who last modified this item.

m3terEntitystring required

The name of the m3ter entity that is part of the External Mapping. For example, this could be "Account".

m3terIdstring required

The unique identifier (UUID) of the m3ter entity.

externalSystemstring required

The name of the external system where the entity you are mapping resides.

externalTablestring required

The name of the table in the external system where the entity resides.

externalIdstring required

The unique identifier (UUID) of the entity in the external system.

integrationConfigIdstring

UUID of the configuration this mapping is for

Example response

{
  "m3terEntity": "Account",
  "m3terId": "00000000-0000-0000-0000-000000000000",
  "externalSystem": "Stripe",
  "externalTable": "Customer",
  "externalId": "cus_00000000000000",
  "integrationConfigId": "00000000-0000-0000-0000-000000000000"
}