{"id":48540168,"url":"https://github.com/panoramicdata/teamviewer.api","last_synced_at":"2026-04-08T04:01:51.439Z","repository":{"id":332674165,"uuid":"1134438702","full_name":"panoramicdata/TeamViewer.Api","owner":"panoramicdata","description":"A comprehensive .NET library for the TeamViewer REST API","archived":false,"fork":false,"pushed_at":"2026-04-05T17:25:08.000Z","size":1311,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-05T19:14:33.179Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/panoramicdata.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-14T18:08:45.000Z","updated_at":"2026-04-05T17:25:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/panoramicdata/TeamViewer.Api","commit_stats":null,"previous_names":["panoramicdata/teamviewer.api"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/panoramicdata/TeamViewer.Api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FTeamViewer.Api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FTeamViewer.Api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FTeamViewer.Api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FTeamViewer.Api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panoramicdata","download_url":"https://codeload.github.com/panoramicdata/TeamViewer.Api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FTeamViewer.Api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31539229,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"online","status_checked_at":"2026-04-08T02:00:06.127Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-08T04:01:50.435Z","updated_at":"2026-04-08T04:01:51.434Z","avatar_url":"https://github.com/panoramicdata.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TeamViewer.Api\n\n[![Nuget](https://img.shields.io/nuget/v/TeamViewer.Api)](https://www.nuget.org/packages/TeamViewer.Api/)\n[![Nuget](https://img.shields.io/nuget/dt/TeamViewer.Api)](https://www.nuget.org/packages/TeamViewer.Api/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/c914f9877e2c4503a792a7c7fda75ba8)](https://app.codacy.com/gh/panoramicdata/TeamViewer.Api/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade)\n\nA comprehensive .NET library for the TeamViewer REST API.\n\n## Installation\n\n```powershell\ndotnet add package TeamViewer.Api\n```\n\nOr via the NuGet Package Manager:\n\n```powershell\nInstall-Package TeamViewer.Api\n```\n\n## Quick Start\n\n```csharp\nusing TeamViewer.Api;\n\n// Create the client with your Script Token\nvar options = new TeamViewerClientOptions\n{\n    ScriptToken = \"your-script-token-here\"\n};\n\nusing var client = new TeamViewerClient(options);\n\n// Test connectivity\nvar ping = await client\n\t.Ping\n\t.PingAsync(cancellationToken);\n\n// Get account information\nvar account = await client\n\t.Account\n\t.GetAsync(cancellationToken);\n\n// List users\nvar users = await client.Users.GetUsersAsync(new GetUsersRequest(), cancellationToken);\nforeach (var user in users.Users)\n{\n    Console.WriteLine(user.Name);\n}\n\n// List devices\nvar devices = await client\n\t.Devices\n\t.GetAsync(new GetDevicesRequest(), cancellationToken);\nforeach (var device in devices.Devices)\n{\n    Console.WriteLine(device.Alias);\n}\n```\n\n## Features\n\n- **Full TeamViewer REST API coverage** - Users, Groups, Devices, Contacts, Sessions, Meetings, Reports, Policies, and more\n- **Script Token authentication** - Simple bearer token authentication\n- **Automatic retry with exponential backoff** - Handles rate limiting (429) and transient errors (5xx)\n- **Comprehensive logging support** - Integrates with Microsoft.Extensions.Logging\n- **Strongly-typed models** - Full IntelliSense support with XML documentation\n- **Async/await patterns** - All methods are async with CancellationToken support\n- **Modern .NET** - Built for .NET 10 with nullable reference types\n\n## Supported APIs\n\n| API | Description |\n|-----|-------------|\n| Ping | Test connectivity and token validity |\n| Account | Get and update account information |\n| Users | Manage company users (CRUD operations) |\n| Groups | Manage groups and sharing |\n| Devices | Manage devices in Computers and Contacts |\n| Contacts | Manage contacts |\n| Sessions | Manage session codes for remote support |\n| Meetings | Schedule and manage meetings |\n| Reports | Access connection and device reports |\n| Event Logging | Access audit logs |\n| Policies | Manage TeamViewer policies |\n\n## Authentication\n\nTeamViewer.Api uses Script Token authentication. To obtain a Script Token:\n\n1. Log in to the [TeamViewer Management Console](https://login.teamviewer.com/)\n2. Navigate to **Company Administration** \u003e **API Access**\n3. Click **Create Script Token**\n4. Configure the required permissions for your use case\n5. Copy the generated token\n\n## API Documentation\n\nThe TeamViewer API documentation can be found here:\n- [TeamViewer API Documentation](https://www.teamviewer.com/en/for-developers/teamviewer-api/)\n- [TeamViewer API Reference](https://webapi.teamviewer.com/api/v1/docs/index)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fteamviewer.api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanoramicdata%2Fteamviewer.api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fteamviewer.api/lists"}