Update dataset
PUT/api/management/datasets/:id
Update an existing dataset by id.
Request
Path Parameters
id stringrequired
- application/json
Bodyrequired
object
Responses
- 200
- 403
- application/json
- Schema
- Example (auto)
Schema
object
{}
Forbidden
- application/json
- Schema
- Example (auto)
Schema
namestringrequired
Example:
ResourceNotFound
statusstringrequired
Example:
404 Not Found
codenumberrequired
Example:
404
messageobject
Example:
The requested resource does not exist.
errorstring
Example:
Not Found
{
"name": "ResourceNotFound",
"status": "404 Not Found",
"code": 404,
"message": "The requested resource does not exist.",
"error": "Not Found"
}
Authorization: oauth2
name: oauth2type: oauth2scopes:controlplane_dataplane
flows: { "password": { "scopes": { "httpdataplane_admin": "httpdataplane_admin", "httpdataplane_dataplane": "httpdataplane_dataplane" } } }
- curl
- http
- CURL
curl -L -X PUT 'https://tsg.dataspac.es/api/management/datasets/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{}'