import 'package:app_store_connect/api.dart';
All URIs are relative to https://api.appstoreconnect.apple.com
Method | HTTP request | Description |
---|---|---|
betaAppReviewSubmissionsBuildGetToOneRelated | GET /v1/betaAppReviewSubmissions/{id}/build | |
betaAppReviewSubmissionsCreateInstance | POST /v1/betaAppReviewSubmissions | |
betaAppReviewSubmissionsGetCollection | GET /v1/betaAppReviewSubmissions | |
betaAppReviewSubmissionsGetInstance | GET /v1/betaAppReviewSubmissions/{id} |
BuildResponse betaAppReviewSubmissionsBuildGetToOneRelated(id, fieldsLeftSquareBracketBuildsRightSquareBracket)
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().getBetaAppReviewSubmissionsApi();
final String id = id_example; // String | the id of the requested resource
final BuiltList<String> fieldsLeftSquareBracketBuildsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type builds
try {
final response = api.betaAppReviewSubmissionsBuildGetToOneRelated(id, fieldsLeftSquareBracketBuildsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppReviewSubmissionsApi->betaAppReviewSubmissionsBuildGetToOneRelated: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
fieldsLeftSquareBracketBuildsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type builds | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppReviewSubmissionResponse betaAppReviewSubmissionsCreateInstance(betaAppReviewSubmissionCreateRequest)
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().getBetaAppReviewSubmissionsApi();
final BetaAppReviewSubmissionCreateRequest betaAppReviewSubmissionCreateRequest = ; // BetaAppReviewSubmissionCreateRequest | BetaAppReviewSubmission representation
try {
final response = api.betaAppReviewSubmissionsCreateInstance(betaAppReviewSubmissionCreateRequest);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppReviewSubmissionsApi->betaAppReviewSubmissionsCreateInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
betaAppReviewSubmissionCreateRequest | BetaAppReviewSubmissionCreateRequest | BetaAppReviewSubmission representation |
BetaAppReviewSubmissionResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppReviewSubmissionsResponse betaAppReviewSubmissionsGetCollection(filterLeftSquareBracketBuildRightSquareBracket, filterLeftSquareBracketBetaReviewStateRightSquareBracket, fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket, limit, include, fieldsLeftSquareBracketBuildsRightSquareBracket)
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().getBetaAppReviewSubmissionsApi();
final BuiltList<String> filterLeftSquareBracketBuildRightSquareBracket = ; // BuiltList<String> | filter by id(s) of related 'build'
final BuiltList<String> filterLeftSquareBracketBetaReviewStateRightSquareBracket = ; // BuiltList<String> | filter by attribute 'betaReviewState'
final BuiltList<String> fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type betaAppReviewSubmissions
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> fieldsLeftSquareBracketBuildsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type builds
try {
final response = api.betaAppReviewSubmissionsGetCollection(filterLeftSquareBracketBuildRightSquareBracket, filterLeftSquareBracketBetaReviewStateRightSquareBracket, fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket, limit, include, fieldsLeftSquareBracketBuildsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppReviewSubmissionsApi->betaAppReviewSubmissionsGetCollection: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
filterLeftSquareBracketBuildRightSquareBracket | BuiltList<String> | filter by id(s) of related 'build' | |
filterLeftSquareBracketBetaReviewStateRightSquareBracket | BuiltList<String> | filter by attribute 'betaReviewState' | [optional] |
fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type betaAppReviewSubmissions | [optional] |
limit | int | maximum resources per page | [optional] |
include | BuiltList<String> | comma-separated list of relationships to include | [optional] |
fieldsLeftSquareBracketBuildsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type builds | [optional] |
BetaAppReviewSubmissionsResponse
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BetaAppReviewSubmissionResponse betaAppReviewSubmissionsGetInstance(id, fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket, include, fieldsLeftSquareBracketBuildsRightSquareBracket)
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().getBetaAppReviewSubmissionsApi();
final String id = id_example; // String | the id of the requested resource
final BuiltList<String> fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type betaAppReviewSubmissions
final BuiltList<String> include = ; // BuiltList<String> | comma-separated list of relationships to include
final BuiltList<String> fieldsLeftSquareBracketBuildsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type builds
try {
final response = api.betaAppReviewSubmissionsGetInstance(id, fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket, include, fieldsLeftSquareBracketBuildsRightSquareBracket);
print(response);
} catch on DioError (e) {
print('Exception when calling BetaAppReviewSubmissionsApi->betaAppReviewSubmissionsGetInstance: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
fieldsLeftSquareBracketBetaAppReviewSubmissionsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type betaAppReviewSubmissions | [optional] |
include | BuiltList<String> | comma-separated list of relationships to include | [optional] |
fieldsLeftSquareBracketBuildsRightSquareBracket | BuiltList<String> | the fields to include for returned resources of type builds | [optional] |
BetaAppReviewSubmissionResponse
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]