Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.09 KB

CiArtifactsApi.md

File metadata and controls

60 lines (40 loc) · 2.09 KB

app_store_connect.api.CiArtifactsApi

Load the API package

import 'package:app_store_connect/api.dart';

All URIs are relative to https://api.appstoreconnect.apple.com

Method HTTP request Description
ciArtifactsGetInstance GET /v1/ciArtifacts/{id}

ciArtifactsGetInstance

CiArtifactResponse ciArtifactsGetInstance(id, fieldsLeftSquareBracketCiArtifactsRightSquareBracket)

Example

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().getCiArtifactsApi();
final String id = id_example; // String | the id of the requested resource
final BuiltList<String> fieldsLeftSquareBracketCiArtifactsRightSquareBracket = ; // BuiltList<String> | the fields to include for returned resources of type ciArtifacts

try {
    final response = api.ciArtifactsGetInstance(id, fieldsLeftSquareBracketCiArtifactsRightSquareBracket);
    print(response);
} catch on DioError (e) {
    print('Exception when calling CiArtifactsApi->ciArtifactsGetInstance: $e\n');
}

Parameters

Name Type Description Notes
id String the id of the requested resource
fieldsLeftSquareBracketCiArtifactsRightSquareBracket BuiltList<String> the fields to include for returned resources of type ciArtifacts [optional]

Return type

CiArtifactResponse

Authorization

itc-bearer-token

HTTP request headers

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

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