Routescope APIRoutescope API
Model API DocumentationVideo Models

Delete Asset Group

Delete an asset group and soft-delete the local ownership relation.

Delete an asset group. After the upstream delete succeeds, this project soft-deletes the local ownership relation between the current user and that groupId.

DELETE
/v1/api/video-studio/assets/ecloud/{groupId}
curl -X DELETE "https://api.routescope.ai/v1/api/video-studio/assets/ecloud/string"
{
  "data": {
    "deleted": true
  },
  "error": {
    "code": "not_found",
    "message": "asset group not found"
  },
  "request_id": "req_xxx"
}
{
  "data": null,
  "error": {
    "code": "not_found",
    "message": "asset group not found"
  },
  "request_id": "req_xxx"
}

Authorization

BearerAuth

AuthorizationBearer <token>

Use this project's gateway token: Authorization: Bearer <API_TOKEN>. This is not the upstream asset-library API key.

In: header

Path Parameters

groupId*string

Asset group ID returned by the upstream service. This project validates the local ownership relation for this groupId against the current user.

Response Body

application/json

application/json

Last updated on