API for getting all the datasources present in account.
Response containing list of data sources present in account
{- "data_sources": [
- {
- "identifier": "string",
- "name": "string",
- "description": "string"
}
]
}
Get DataPoints Present in DataSources
Example response
{- "data_points": [
- {
- "type": "string",
- "name": "string",
- "description": "string",
- "data_point_identifier": "string",
- "detailed_description": "string",
- "input_details": [
- {
- "key": "string",
- "description": "string",
- "required": true
}
]
}
]
}
API for getting the map of data sources and data points for account
Response for getting the data source and data point map
{- "data_source_data_points_map": [
- {
- "data_source": {
- "identifier": "string",
- "name": "string",
- "description": "string"
}, - "data_points": [
- {
- "type": "string",
- "name": "string",
- "description": "string",
- "data_point_identifier": "string",
- "detailed_description": "string",
- "input_details": [
- {
- "key": "string",
- "description": "string",
- "required": true
}
]
}
]
}
]
}