Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.75 KB

DiagnosticSignaturesAPI.md

File metadata and controls

58 lines (38 loc) · 1.75 KB

DiagnosticSignaturesAPI

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

Method HTTP request Description
diagnosticSignaturesLogsGetToManyRelated GET /v1/diagnosticSignatures/{id}/logs

diagnosticSignaturesLogsGetToManyRelated

    open class func diagnosticSignaturesLogsGetToManyRelated(id: String, limit: Int? = nil, completion: @escaping (_ data: DiagnosticLogs?, _ 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 limit = 987 // Int | maximum resources per page (optional)

DiagnosticSignaturesAPI.diagnosticSignaturesLogsGetToManyRelated(id: id, limit: limit) { (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
limit Int maximum resources per page [optional]

Return type

DiagnosticLogs

Authorization

itc-bearer-token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/vnd.apple.diagnostic-logs+json

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