Data Sources
Create a data source
Create a custom mapping data source.
post/v3/mapping_data_sources
Request body
Example request
{
"name": "My supplier list",
"organization": "mewlkWEKL",
"workspace": "mewlkWEKL",
"keyProperty": "value",
"displayProperty": "label",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"label"
],
"properties": {
"label": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
}Response
Successfully created a 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"
}
}
}
}