Skip to main content
PUT
/
v1
/
assets
/
:id
Update Asset
curl --request PUT \
  --url https://api.oviond.com/v1/assets/:id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "type": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "datasources": [
    "<string>"
  ],
  "ranking": 123
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string
type
string
description
string
tags
string[]
datasources
string[]
ranking
number

Response

Asset updated

success
enum<boolean>
required
Available options:
true