v1

latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KB

Move Web Tool to Collection.

Moves a web tool into a collection or removes it from a collection (when collectionId is null).

post/v1/voice-agents/collections/move

Request body

webToolIdstring uuid required

UUID of the web tool to move.

collectionIdstring uuid nullable

UUID of the collection to move the tool to. Set to null to remove from collection.

Example request

{
  "webToolId": "d949f13f-40d2-4e48-ac86-b66633070603",
  "collectionId": "d949f13f-40d2-4e48-ac86-b66633070603"
}

Response

Successful response

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Web tool moved successfully"
}