data_sources
Create Data Source
Create a new data source.
post/api/v1/data_sources/
Request body
Example request
{
"name": "Rain",
"description": "Information about rain.",
"labels": [
"Weather Info"
],
"text": "The following are names and addresses of pizza shops.\n\nCool Pizza, 123 Main St.\n\nReally Good Pizza, 456 Water St.\n\nThe Best Pizza, 789 Circle Dr."
}Response
Successful Response
Example response
{
"name": "Rain",
"description": "Information about rain.",
"labels": [
"Weather Info"
],
"id": 1,
"edit_comments": "Added new info",
"last_updated_by": "user@email.com"
}