Assets
Duplicate Asset
Duplicate an asset with a new name
POST
Duplicate Asset
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Duplicate an asset with a new name
curl --request POST \
--url https://api.oviond.com/v1/assets/:id/duplicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "GA4 Traffic Widget (copy)",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"success": true,
"data": {
"id": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request POST \
--url https://api.oviond.com/v1/assets/:id/duplicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "GA4 Traffic Widget (copy)",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"success": true,
"data": {
"id": "<string>"
}
}