v1

latestOpenAPI 3.0.3MIT2026-07-22153276289.7 KB
Data Sources

Get specific data source

Return a specific mapping data source.

get/v3/mapping_data_sources/{identifier}

Path parameters

identifierstring required

Uniquely identify a mapping data source.

Example:mEFayXdO

Data source's identifier

Response

Successfully retrieved mapping data source value.

identifierstring required

Uniquely identify a mapping data source.

namestring nullable
keyPropertystring required

Attribute in the schema which uniquely identifiers the value

displayPropertystring required

Attribute in the schema which is used to display the value

organizationstring nullable required

The organization that this mapping data source belongs to.

workspacestring nullable required

The workspace that this mapping data source belongs to.

schemaobject

The schema of the mapping data source.

Example response

{
  "identifier": "mEFayXdO",
  "name": "My supplier list",
  "keyProperty": "value",
  "displayProperty": "value",
  "organization": "mewlkWEKL",
  "workspace": "mewlkWEKL",
  "schema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "required": [
      "label"
    ],
    "properties": {
      "label": {
        "type": "string"
      },
      "description": {
        "type": "string"
      }
    }
  }
}