Skip to content

Latest commit

 

History

History
1740 lines (1279 loc) · 71.1 KB

ErrorsApi.md

File metadata and controls

1740 lines (1279 loc) · 71.1 KB

ZeC128\AppCenter\ErrorsApi

All URIs are relative to https://api.appcenter.ms

Method HTTP request Description
errorsAppBuildsList GET /v0.1/apps/{owner_name}/{app_name}/errors/availableAppBuilds
errorsAvailableVersions GET /v0.1/apps/{owner_name}/{app_name}/errors/available_versions
errorsCountsPerDay GET /v0.1/apps/{owner_name}/{app_name}/errors/errorCountsPerDay
errorsDeleteError DELETE /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/{errorId}
errorsErrorAttachmentLocation GET /v0.1/apps/{owner_name}/{app_name}/errors/{errorId}/attachments/{attachmentId}/location
errorsErrorAttachmentText GET /v0.1/apps/{owner_name}/{app_name}/errors/{errorId}/attachments/{attachmentId}/text
errorsErrorAttachments GET /v0.1/apps/{owner_name}/{app_name}/errors/{errorId}/attachments
errorsErrorDownload GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/{errorId}/download
errorsErrorFreeDevicePercentages GET /v0.1/apps/{owner_name}/{app_name}/errors/errorfreeDevicePercentages
errorsErrorGroupsSearch GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/search
errorsErrorLocation GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/{errorId}/location
errorsErrorSearch GET /v0.1/apps/{owner_name}/{app_name}/errors/search
errorsErrorStackTrace GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/{errorId}/stacktrace
errorsGetErrorDetails GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/{errorId}
errorsGetRetentionSettings GET /v0.1/apps/{owner_name}/{app_name}/errors/retention_settings gets the retention settings in days
errorsGroupCountsPerDay GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errorCountsPerDay
errorsGroupDetails GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}
errorsGroupErrorFreeDevicePercentages GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errorfreeDevicePercentages
errorsGroupErrorStackTrace GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/stacktrace
errorsGroupList GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups
errorsGroupModelCounts GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/models
errorsGroupOperatingSystemCounts GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/operatingSystems
errorsLatestErrorDetails GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors/latest
errorsListForGroup GET /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}/errors
errorsListSessionLogs GET /v0.1/apps/{owner_name}/{app_name}/errors/{errorId}/sessionLogs
errorsPutRetentionSettings PUT /v0.1/apps/{owner_name}/{app_name}/errors/retention_settings Creates and updates the retention settings in days
errorsUpdateState PATCH /v0.1/apps/{owner_name}/{app_name}/errors/errorGroups/{errorGroupId}

errorsAppBuildsList

\ZeC128\AppCenter\AppCenterApi\InlineResponse20058 errorsAppBuildsList($version, $start, $owner_name, $app_name, $end, $top, $error_type)

List of app builds

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$version = "version_example"; // string | 
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)
$error_type = "error_type_example"; // string | Type of error (handled vs unhandled), including All

try {
    $result = $apiInstance->errorsAppBuildsList($version, $start, $owner_name, $app_name, $end, $top, $error_type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsAppBuildsList: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
version string
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
end \DateTime Last date time in data in ISO 8601 date time format [optional]
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]
error_type string Type of error (handled vs unhandled), including All [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20058

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsAvailableVersions

\ZeC128\AppCenter\AppCenterApi\InlineResponse20057 errorsAvailableVersions($start, $owner_name, $app_name, $end, $top, $skip, $filter, $inlinecount, $error_type)

Get all available versions in the time range.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)
$skip = 0; // int | The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination.
$filter = "filter_example"; // string | A filter as specified in https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md#97-filtering.
$inlinecount = "none"; // string | Controls whether or not to include a count of all the items across all pages.
$error_type = "error_type_example"; // string | Type of error (handled vs unhandled), including All

try {
    $result = $apiInstance->errorsAvailableVersions($start, $owner_name, $app_name, $end, $top, $skip, $filter, $inlinecount, $error_type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsAvailableVersions: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
end \DateTime Last date time in data in ISO 8601 date time format [optional]
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]
skip int The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination. [optional] [default to 0]
filter string A filter as specified in https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md#97-filtering. [optional]
inlinecount string Controls whether or not to include a count of all the items across all pages. [optional] [default to none]
error_type string Type of error (handled vs unhandled), including All [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20057

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsCountsPerDay

\ZeC128\AppCenter\AppCenterApi\InlineResponse20053 errorsCountsPerDay($start, $owner_name, $app_name, $version, $end, $app_build, $error_type)

Count of crashes or errors by day in the time range based the selected versions. If SingleErrorTypeParameter is not provided, defaults to handlederror.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$version = "version_example"; // string | 
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$app_build = "app_build_example"; // string | app build
$error_type = "error_type_example"; // string | Type of error (handled vs unhandled), excluding All

try {
    $result = $apiInstance->errorsCountsPerDay($start, $owner_name, $app_name, $version, $end, $app_build, $error_type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsCountsPerDay: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
version string [optional]
end \DateTime Last date time in data in ISO 8601 date time format [optional]
app_build string app build [optional]
error_type string Type of error (handled vs unhandled), excluding All [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20053

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsDeleteError

\ZeC128\AppCenter\AppCenterApi\InlineResponse20051 errorsDeleteError($error_group_id, $error_id, $owner_name, $app_name)

Delete a specific error and related attachments and blobs for an app. Searchable data will not be deleted immediately and may take up to 30 days.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsDeleteError($error_group_id, $error_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsDeleteError: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20051

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorAttachmentLocation

\ZeC128\AppCenter\AppCenterApi\InlineResponse20043 errorsErrorAttachmentLocation($error_id, $attachment_id, $owner_name, $app_name)

Error attachment location.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_id = "error_id_example"; // string | The id of the error
$attachment_id = "attachment_id_example"; // string | Error attachment id.
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsErrorAttachmentLocation($error_id, $attachment_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorAttachmentLocation: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_id string The id of the error
attachment_id string Error attachment id.
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20043

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorAttachmentText

\ZeC128\AppCenter\AppCenterApi\InlineResponse20042 errorsErrorAttachmentText($error_id, $attachment_id, $owner_name, $app_name)

Error attachment text.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_id = "error_id_example"; // string | The id of the error
$attachment_id = "attachment_id_example"; // string | Error attachment id.
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsErrorAttachmentText($error_id, $attachment_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorAttachmentText: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_id string The id of the error
attachment_id string Error attachment id.
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20042

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorAttachments

\ZeC128\AppCenter\AppCenterApi\InlineResponse20044[] errorsErrorAttachments($error_id, $owner_name, $app_name)

List error attachments.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsErrorAttachments($error_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorAttachments: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20044[]

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorDownload

object errorsErrorDownload($error_group_id, $error_id, $owner_name, $app_name, $format)

Download details for a specific error.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$format = "format_example"; // string | the format of the crash log

try {
    $result = $apiInstance->errorsErrorDownload($error_group_id, $error_id, $owner_name, $app_name, $format);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorDownload: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application
format string the format of the crash log [optional]

Return type

object

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorFreeDevicePercentages

\ZeC128\AppCenter\AppCenterApi\InlineResponse20047 errorsErrorFreeDevicePercentages($start, $owner_name, $app_name, $end, $versions, $app_build, $error_type)

Percentage of error-free devices by day in the time range based on the selected versions. If SingleErrorTypeParameter is not provided, defaults to handlederror. API will return -1 if crash devices is greater than active devices

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$versions = array("versions_example"); // string[] | 
$app_build = "app_build_example"; // string | app build
$error_type = "error_type_example"; // string | Type of error (handled vs unhandled), excluding All

try {
    $result = $apiInstance->errorsErrorFreeDevicePercentages($start, $owner_name, $app_name, $end, $versions, $app_build, $error_type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorFreeDevicePercentages: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
end \DateTime Last date time in data in ISO 8601 date time format [optional]
versions string[] [optional]
app_build string app build [optional]
error_type string Type of error (handled vs unhandled), excluding All [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20047

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorGroupsSearch

\ZeC128\AppCenter\AppCenterApi\InlineResponse20055 errorsErrorGroupsSearch($owner_name, $app_name, $filter, $q, $order, $sort, $top, $skip)

Error groups list based on search parameters

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$filter = "filter_example"; // string | A filter as specified in OData notation
$q = "q_example"; // string | A query string
$order = "desc"; // string | It controls the order of sorting
$sort = "matchingReportsCount"; // string | It controls the sort based on specified field
$top = 100; // int | The maximum number of results to return
$skip = 0; // int | The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination.

try {
    $result = $apiInstance->errorsErrorGroupsSearch($owner_name, $app_name, $filter, $q, $order, $sort, $top, $skip);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorGroupsSearch: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
owner_name string The name of the owner
app_name string The name of the application
filter string A filter as specified in OData notation [optional]
q string A query string [optional]
order string It controls the order of sorting [optional] [default to desc]
sort string It controls the sort based on specified field [optional] [default to matchingReportsCount]
top int The maximum number of results to return [optional] [default to 100]
skip int The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination. [optional] [default to 0]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20055

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorLocation

\ZeC128\AppCenter\AppCenterApi\InlineResponse20043 errorsErrorLocation($error_group_id, $error_id, $owner_name, $app_name)

Error location.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsErrorLocation($error_group_id, $error_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorLocation: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20043

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorSearch

\ZeC128\AppCenter\AppCenterApi\InlineResponse20045 errorsErrorSearch($owner_name, $app_name, $filter, $q, $order, $sort, $top, $skip)

Errors list based on search parameters

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$filter = "filter_example"; // string | A filter as specified in OData notation
$q = "q_example"; // string | A query string
$order = "desc"; // string | It controls the order of sorting
$sort = "timestamp"; // string | It controls the sort based on specified field
$top = 100; // int | The maximum number of results to return
$skip = 0; // int | The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination.

try {
    $result = $apiInstance->errorsErrorSearch($owner_name, $app_name, $filter, $q, $order, $sort, $top, $skip);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorSearch: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
owner_name string The name of the owner
app_name string The name of the application
filter string A filter as specified in OData notation [optional]
q string A query string [optional]
order string It controls the order of sorting [optional] [default to desc]
sort string It controls the sort based on specified field [optional] [default to timestamp]
top int The maximum number of results to return [optional] [default to 100]
skip int The offset (starting at 0) of the first result to return. This parameter along with limit is used to perform pagination. [optional] [default to 0]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20045

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsErrorStackTrace

\ZeC128\AppCenter\AppCenterApi\DiagnosticsStackTrace errorsErrorStackTrace($error_group_id, $error_id, $owner_name, $app_name)

Error Stacktrace details.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsErrorStackTrace($error_group_id, $error_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsErrorStackTrace: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\DiagnosticsStackTrace

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGetErrorDetails

\ZeC128\AppCenter\AppCenterApi\InlineResponse20050 errorsGetErrorDetails($error_group_id, $error_id, $owner_name, $app_name)

Error details.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsGetErrorDetails($error_group_id, $error_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGetErrorDetails: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20050

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGetRetentionSettings

\ZeC128\AppCenter\AppCenterApi\InlineResponse20046 errorsGetRetentionSettings($owner_name, $app_name)

gets the retention settings in days

gets the retention settings in days

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsGetRetentionSettings($owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGetRetentionSettings: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20046

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupCountsPerDay

\ZeC128\AppCenter\AppCenterApi\InlineResponse20053 errorsGroupCountsPerDay($error_group_id, $start, $owner_name, $app_name, $version, $end)

Count of errors by day in the time range of the selected error group with selected version

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$version = "version_example"; // string | 
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format

try {
    $result = $apiInstance->errorsGroupCountsPerDay($error_group_id, $start, $owner_name, $app_name, $version, $end);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupCountsPerDay: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
version string [optional]
end \DateTime Last date time in data in ISO 8601 date time format [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20053

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupDetails

\ZeC128\AppCenter\AppCenterApi\InlineResponse20054 errorsGroupDetails($error_group_id, $owner_name, $app_name)

Error group details

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsGroupDetails($error_group_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupDetails: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20054

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupErrorFreeDevicePercentages

\ZeC128\AppCenter\AppCenterApi\InlineResponse20047 errorsGroupErrorFreeDevicePercentages($error_group_id, $start, $owner_name, $app_name, $end)

Percentage of error-free devices by day in the time range. Api will return -1 if crash devices is greater than active devices

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format

try {
    $result = $apiInstance->errorsGroupErrorFreeDevicePercentages($error_group_id, $start, $owner_name, $app_name, $end);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupErrorFreeDevicePercentages: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
end \DateTime Last date time in data in ISO 8601 date time format [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20047

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupErrorStackTrace

\ZeC128\AppCenter\AppCenterApi\DiagnosticsStackTrace errorsGroupErrorStackTrace($error_group_id, $owner_name, $app_name)

Gets the stack trace for the error group.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsGroupErrorStackTrace($error_group_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupErrorStackTrace: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\DiagnosticsStackTrace

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupList

\ZeC128\AppCenter\AppCenterApi\InlineResponse20056 errorsGroupList($start, $owner_name, $app_name, $version, $app_build, $group_state, $end, $orderby, $top, $error_type)

List of error groups

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$version = "version_example"; // string | 
$app_build = "app_build_example"; // string | app build
$group_state = "group_state_example"; // string | 
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$orderby = "count desc"; // string | controls the sorting order and sorting based on which column
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)
$error_type = "error_type_example"; // string | Type of error (handled vs unhandled), including All

try {
    $result = $apiInstance->errorsGroupList($start, $owner_name, $app_name, $version, $app_build, $group_state, $end, $orderby, $top, $error_type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupList: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
version string [optional]
app_build string app build [optional]
group_state string [optional]
end \DateTime Last date time in data in ISO 8601 date time format [optional]
orderby string controls the sorting order and sorting based on which column [optional] [default to count desc]
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]
error_type string Type of error (handled vs unhandled), including All [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20056

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupModelCounts

\ZeC128\AppCenter\AppCenterApi\InlineResponse20049 errorsGroupModelCounts($error_group_id, $owner_name, $app_name, $top)

Top models of the selected error group.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)

try {
    $result = $apiInstance->errorsGroupModelCounts($error_group_id, $owner_name, $app_name, $top);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupModelCounts: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
owner_name string The name of the owner
app_name string The name of the application
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20049

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsGroupOperatingSystemCounts

\ZeC128\AppCenter\AppCenterApi\InlineResponse20048 errorsGroupOperatingSystemCounts($error_group_id, $owner_name, $app_name, $top)

Top OSes of the selected error group.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)

try {
    $result = $apiInstance->errorsGroupOperatingSystemCounts($error_group_id, $owner_name, $app_name, $top);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsGroupOperatingSystemCounts: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
owner_name string The name of the owner
app_name string The name of the application
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20048

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsLatestErrorDetails

\ZeC128\AppCenter\AppCenterApi\InlineResponse20050 errorsLatestErrorDetails($error_group_id, $owner_name, $app_name)

Latest error details.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsLatestErrorDetails($error_group_id, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsLatestErrorDetails: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20050

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsListForGroup

\ZeC128\AppCenter\AppCenterApi\InlineResponse20052 errorsListForGroup($error_group_id, $start, $owner_name, $app_name, $end, $top, $model, $os)

Get all errors for group

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$start = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Start date time in data in ISO 8601 date time format
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$end = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Last date time in data in ISO 8601 date time format
$top = 30; // int | The maximum number of results to return. (0 will fetch all results till the max number.)
$model = "model_example"; // string | 
$os = "os_example"; // string | 

try {
    $result = $apiInstance->errorsListForGroup($error_group_id, $start, $owner_name, $app_name, $end, $top, $model, $os);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsListForGroup: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
start \DateTime Start date time in data in ISO 8601 date time format
owner_name string The name of the owner
app_name string The name of the application
end \DateTime Last date time in data in ISO 8601 date time format [optional]
top int The maximum number of results to return. (0 will fetch all results till the max number.) [optional] [default to 30]
model string [optional]
os string [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20052

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsListSessionLogs

\ZeC128\AppCenter\AppCenterApi\InlineResponse20041 errorsListSessionLogs($error_id, $owner_name, $app_name, $date)

Get session logs by error ID

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_id = "error_id_example"; // string | The id of the error
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application
$date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Date of data requested

try {
    $result = $apiInstance->errorsListSessionLogs($error_id, $owner_name, $app_name, $date);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsListSessionLogs: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_id string The id of the error
owner_name string The name of the owner
app_name string The name of the application
date \DateTime Date of data requested [optional]

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20041

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsPutRetentionSettings

\ZeC128\AppCenter\AppCenterApi\ErrorRetentionInDays errorsPutRetentionSettings($error_retention_in_days, $owner_name, $app_name)

Creates and updates the retention settings in days

Creates and updates the retention settings in days

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_retention_in_days = new \ZeC128\AppCenter\AppCenterApi\ErrorRetentionInDays(); // \ZeC128\AppCenter\AppCenterApi\ErrorRetentionInDays | The amount of days to keep the crashes for this application. retention_in_days is an enum value, can only be 28 or 90.
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsPutRetentionSettings($error_retention_in_days, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsPutRetentionSettings: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_retention_in_days \ZeC128\AppCenter\AppCenterApi\ErrorRetentionInDays The amount of days to keep the crashes for this application. retention_in_days is an enum value, can only be 28 or 90.
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\ErrorRetentionInDays

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

errorsUpdateState

\ZeC128\AppCenter\AppCenterApi\InlineResponse20054 errorsUpdateState($error_group_id, $error_group_state, $owner_name, $app_name)

Update error group state

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: APIToken
$config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKey('X-API-Token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ZeC128\AppCenter\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Token', 'Bearer');

$apiInstance = new ZeC128\AppCenter\Api\ErrorsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$error_group_id = "error_group_id_example"; // string | The id of the error group
$error_group_state = new \ZeC128\AppCenter\AppCenterApi\ErrorGroupState(); // \ZeC128\AppCenter\AppCenterApi\ErrorGroupState | The state of the error group
$owner_name = "owner_name_example"; // string | The name of the owner
$app_name = "app_name_example"; // string | The name of the application

try {
    $result = $apiInstance->errorsUpdateState($error_group_id, $error_group_state, $owner_name, $app_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ErrorsApi->errorsUpdateState: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
error_group_id string The id of the error group
error_group_state \ZeC128\AppCenter\AppCenterApi\ErrorGroupState The state of the error group
owner_name string The name of the owner
app_name string The name of the application

Return type

\ZeC128\AppCenter\AppCenterApi\InlineResponse20054

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]