Commit 73bec813 by bergquist

docs: adds delete datasource by name

parent 6861c603
...@@ -195,7 +195,7 @@ parent = "http_api" ...@@ -195,7 +195,7 @@ parent = "http_api"
{"message":"Datasource updated", "id": 1, "name": "test_datasource"} {"message":"Datasource updated", "id": 1, "name": "test_datasource"}
## Delete an existing data source ## Delete an existing data source by id
`DELETE /api/datasources/:datasourceId` `DELETE /api/datasources/:datasourceId`
...@@ -213,6 +213,24 @@ parent = "http_api" ...@@ -213,6 +213,24 @@ parent = "http_api"
{"message":"Data source deleted"} {"message":"Data source deleted"}
## Delete an existing data source by name
`DELETE /api/datasources/name/:datasourceName`
**Example Request**:
DELETE /api/datasources/name/test_datasource HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
**Example Response**:
HTTP/1.1 200
Content-Type: application/json
{"message":"Data source deleted"}
## Data source proxy calls ## Data source proxy calls
`GET /api/datasources/proxy/:datasourceId/*` `GET /api/datasources/proxy/:datasourceId/*`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment