Muistiinpano
Tämän sivun käyttö edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoa.
Tämän sivun käyttö edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoa.
Important
Visual Studio App Center was retired on March 31, 2025, except for the Analytics and Diagnostics features, which will continue to be supported until June 30, 2026. Learn more.
Overview
This document covers the scenario where an App Center Test customer has a client whose data is on the same account. If this client requests their data be exported, App Center Test has APIs to satisfy this request. All the APIs detailed are public and documented in App Center Swagger. For more information about App Center GDPR, visit GDPR: Managing Your Data.
Export Test Data for a client
When a client requires exporting their test reports, you may service this request using the following process:
Call the App Center Test API to acquire a list of all the test runs IDs owned by the client requesting deletion. You'll need the app name, and the owner (user or organization) name.
GET /v0.1/apps/{owner_name}/{app_name}/test_runsGET https://appcenter.ms/api/v0.1/apps/CompanyOrg1/AndroidApp1/test_runsFor each of the app IDs gathered in the previous step, make the following API call to export the data. This call returns all the files that have been uploaded for this app. The categories below for app test data.
GET /v0.1/apps/{owner_name}/{app_name}/test/exportGET https://appcenter.ms/api/v0.1/apps/CompanyOrg1/AndroidApp1/test/exportTest Export API subcalls
GET /v0.1/apps/{owner_name}/{app_name}/test/export/testRunsGET /v0.1/apps/{owner_name}/{app_name}/test/export/pipelineTestsGET /v0.1/apps/{owner_name}/{app_name}/test/export/hashFilesGET /v0.1/apps/{owner_name}/{app_name}/test/export/fileSetFilesAggregate all of the exported data to a file, send to customer.