π οΈ Update Dataset
π Endpoints Required
ποΈ Data Schema
Describe or paste the expected request/response shape below.
{
name: string,
rows: Array of data to insert, must have all the req. columns from table definition,
}
Note: See dataset.test.ts for examples of how to use the Dataset API.
β
Acceptance Criteria
π Auth & Permissions
N/A
π Related
π¬ Additional Context
Once the schema is in place, we won't have a good way to update it and will have to build that functionality out later. For now, this endpoint can just be used to insert data.
π οΈ Update Dataset
π Endpoints Required
PUT/api/v1/data_sources/:id/datasets/:idβ Update resourceποΈ Data Schema
Describe or paste the expected request/response shape below.
{ name: string, rows: Array of data to insert, must have all the req. columns from table definition, }Note: See dataset.test.ts for examples of how to use the Dataset API.
β Acceptance Criteria
π Auth & Permissions
N/A
π Related
π¬ Additional Context
Once the schema is in place, we won't have a good way to update it and will have to build that functionality out later. For now, this endpoint can just be used to insert data.