Transfer Media

Transfer all media owned by one user to another

post

The endpoint transfers all not shared media objects owned by the user to a new owner. We transfer the media objects themselves, all perspectives stored in the "My Library" and in custom collections.

Authorizations
Body
from_user_idintegerRequired
to_user_idintegerRequired
Responses
200
The media has been successfully transferred to the target user.
application/json
post
POST /api/public/v1/transfer_media HTTP/1.1
Host: tw.instructuremedia.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 33

{
  "from_user_id": 1,
  "to_user_id": 1
}
{
  "not_transferred_perspective_ids": [
    "text"
  ],
  "not_transferred_collection_ids": [
    1
  ]
}

Last updated

Was this helpful?