Data Sources
List data sources
Returns the list of all custom mapping data sources.
get/v3/mapping_data_sources
Query parameters
offsetinteger
The number of documents to skip before starting to collect the result set.
limitinteger
Example:20
The numbers of results to return.
namestring
Unique index name
Example:my-index
Filter by name.
organizationstring
Uniquely identify an organization.
Example:mEFayXdO
Filter by organization.
workspacestring
Uniquely identify a workspace.
Example:mEFayXdO
Filter by workspace.
identifierstring
Uniquely identify a mapping data source.
Example:mEFayXdO
Filter by identifier.
Response
Will return matching data sources
Example response
{
"count": 10,
"results": [
{
"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"
}
}
}
}
]
}