All URIs are relative to https://api.appstoreconnect.apple.com
Method | HTTP request | Description |
---|---|---|
ciArtifactsGetInstance | GET /v1/ciArtifacts/{id} |
open class func ciArtifactsGetInstance(id: String, fieldsCiArtifacts: [FieldsCiArtifacts_ciArtifactsGetInstance]? = nil, completion: @escaping (_ data: CiArtifactResponse?, _ error: Error?) -> Void)
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import ASC
let id = "id_example" // String | the id of the requested resource
let fieldsCiArtifacts = ["fieldsCiArtifacts_example"] // [String] | the fields to include for returned resources of type ciArtifacts (optional)
CiArtifactsAPI.ciArtifactsGetInstance(id: id, fieldsCiArtifacts: fieldsCiArtifacts) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | the id of the requested resource | |
fieldsCiArtifacts | [String] | the fields to include for returned resources of type ciArtifacts | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]