import 'package:app_store_connect/api.dart';
All URIs are relative to https://api.appstoreconnect.apple.com
Method | HTTP request | Description |
---|---|---|
betaAppLocalizationsAppGetToOneRelated | GET /v1/betaAppLocalizations/{id}/app | |
betaAppLocalizationsCreateInstance | POST /v1/betaAppLocalizations | |
betaAppLocalizationsDeleteInstance | DELETE /v1/betaAppLocalizations/{id} | |
betaAppLocalizationsGetCollection | GET /v1/betaAppLocalizations | |
betaAppLocalizationsGetInstance | GET /v1/betaAppLocalizations/{id} | |
betaAppLocalizationsUpdateInstance | PATCH /v1/betaAppLocalizations/{id} |
AppResponse betaAppLocalizationsAppGetToOneRelated(id, fieldsLeftSquareBracketAppsRightSquareBracket)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final String id = id_example; // String | the id of the requested resource
final BuiltList<String> fieldsLeftSquareBracketAppsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type apps
try {
final response = api.betaAppLocalizationsAppGetToOneRelated(id, fieldsLeftSquareBracketAppsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsAppGetToOneRelated: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
fieldsLeftSquareBracketAppsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type apps | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppLocalizationResponse betaAppLocalizationsCreateInstance(betaAppLocalizationCreateRequest)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final BetaAppLocalizationCreateRequest betaAppLocalizationCreateRequest = ; // BetaAppLocalizationCreateRequest | BetaAppLocalization representation
try {
final response = api.betaAppLocalizationsCreateInstance(betaAppLocalizationCreateRequest);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsCreateInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
betaAppLocalizationCreateRequest | BetaAppLocalizationCreateRequest | BetaAppLocalization representation |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
betaAppLocalizationsDeleteInstance(id)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final String id = id_example; // String | the id of the requested resource
try {
api.betaAppLocalizationsDeleteInstance(id);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsDeleteInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppLocalizationsResponse betaAppLocalizationsGetCollection(filterLeftSquareBracketLocaleRightSquareBracket, filterLeftSquareBracketAppRightSquareBracket, fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket, limit, include, fieldsLeftSquareBracketAppsRightSquareBracket)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final BuiltList<String> filterLeftSquareBracketLocaleRightSquareBracket = ; // BuiltList<String> | filter by attribute 'locale'
final BuiltList<String> filterLeftSquareBracketAppRightSquareBracket = ; // BuiltList<String> | filter by id(s) of related 'app'
final BuiltList<String> fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type betaAppLocalizations
final int limit = 56; // int | maximum resources per page
final BuiltList<String> include = ; // BuiltList<String> | comma-separated list of relationships to include
final BuiltList<String> fieldsLeftSquareBracketAppsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type apps
try {
final response = api.betaAppLocalizationsGetCollection(filterLeftSquareBracketLocaleRightSquareBracket, filterLeftSquareBracketAppRightSquareBracket, fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket, limit, include, fieldsLeftSquareBracketAppsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsGetCollection: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
filterLeftSquareBracketLocaleRightSquareBracket | BuiltList<String> | filter by attribute 'locale' | [optional] |
filterLeftSquareBracketAppRightSquareBracket | BuiltList<String> | filter by id(s) of related 'app' | [optional] |
fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type betaAppLocalizations | [optional] |
limit | int | maximum resources per page | [optional] |
include | BuiltList<String> | comma-separated list of relationships to include | [optional] |
fieldsLeftSquareBracketAppsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type apps | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppLocalizationResponse betaAppLocalizationsGetInstance(id, fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket, include, fieldsLeftSquareBracketAppsRightSquareBracket)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final String id = id_example; // String | the id of the requested resource
final BuiltList<String> fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type betaAppLocalizations
final BuiltList<String> include = ; // BuiltList<String> | comma-separated list of relationships to include
final BuiltList<String> fieldsLeftSquareBracketAppsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type apps
try {
final response = api.betaAppLocalizationsGetInstance(id, fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket, include, fieldsLeftSquareBracketAppsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsGetInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
fieldsLeftSquareBracketBetaAppLocalizationsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type betaAppLocalizations | [optional] |
include | BuiltList<String> | comma-separated list of relationships to include | [optional] |
fieldsLeftSquareBracketAppsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type apps | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppLocalizationResponse betaAppLocalizationsUpdateInstance(id, betaAppLocalizationUpdateRequest)
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getBetaAppLocalizationsApi();
final String id = id_example; // String | the id of the requested resource
final BetaAppLocalizationUpdateRequest betaAppLocalizationUpdateRequest = ; // BetaAppLocalizationUpdateRequest | BetaAppLocalization representation
try {
final response = api.betaAppLocalizationsUpdateInstance(id, betaAppLocalizationUpdateRequest);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppLocalizationsApi->betaAppLocalizationsUpdateInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
betaAppLocalizationUpdateRequest | BetaAppLocalizationUpdateRequest | BetaAppLocalization representation |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]