how can I transfer these 500 computers to a login.teamviewer.com account in bulk

We have installed 500 computers on TeamViewer host

Screenshot_2.jpg
how can I transfer these computers to a https://login.teamviewer.com account in bulk 
Can I transfer 500 users with Script

Screenshot_3.jpg

I found a document but could not find the part

https://dl.tvcdn.de/integrate/TeamViewer_API_Documentation.pdf

Comments

  • DomLan
    DomLan Posts: 490 ⭐Star⭐

    Hi @FerhatYILDIZ

    if you have the TeamViewer IDs of each device available, you can use the POST method on the DEVICE REST resource via API:

    POST /api/v1/devices  
    Content-Type: application/json

    {
    "remotecontrol_id": "r123456789",
    "groupid": "g12345678",
    "password": "4815162342"
    "alias": "Tom's PC"
    "description": "Tom Barnet - First floor"
    }

    In case you do not have this data available, can you indicate the starting elements at your disposal?

    Hope this help

    Regards

     

    Domenico Langone

    MCSD: App Builder

  • DomLan
    DomLan Posts: 490 ⭐Star⭐

    Hi @FerhatYILDIZ

    if you have the TeamViewer IDs of each device available, you can use the POST method on the DEVICE REST resource via API (prefix "r" with your TV ID)

    POST /api/v1/devices  
    Content-Type: application/json

    {
    "remotecontrol_id": "r123456789",
    "groupid": "g12345678",
    "password": "4815162342"
    "alias": "Tom's PC"
    "description": "Tom Barnet - First floor"
    }

    In case you do not have this data available, can you indicate the starting elements at your disposal?

    Hope this help.

    Regards

    Domenico Langone

    MCSD: App Builder