Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.81 KB

CiArtifactsAPI.md

File metadata and controls

58 lines (38 loc) · 1.81 KB

CiArtifactsAPI

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

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

ciArtifactsGetInstance

    open class func ciArtifactsGetInstance(id: String, fieldsCiArtifacts: [FieldsCiArtifacts_ciArtifactsGetInstance]? = nil, completion: @escaping (_ data: CiArtifactResponse?, _ error: Error?) -> Void)

Example

// 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)
    }
}

Parameters

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]

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]