Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.75 KB

File metadata and controls

57 lines (38 loc) · 1.75 KB

SupportedIdentifiersAPI

All URIs are relative to https://api.mydatamyconsent.com

Method HTTP request Description
v1SupportedIdentifiersCountryIso2CodeGet GET /v1/supported-identifiers/{country_iso2_code} Get all supported identifiers by country.

v1SupportedIdentifiersCountryIso2CodeGet

    open class func v1SupportedIdentifiersCountryIso2CodeGet(countryIso2Code: String, completion: @escaping (_ data: SupportedIdentifier?, _ error: Error?) -> Void)

Get all supported identifiers by country.

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import MyDataMyConsent

let countryIso2Code = "countryIso2Code_example" // String | 

// Get all supported identifiers by country.
SupportedIdentifiersAPI.v1SupportedIdentifiersCountryIso2CodeGet(countryIso2Code: countryIso2Code) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
countryIso2Code String

Return type

SupportedIdentifier

Authorization

OAuth2ClientCredentials

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json; charset=utf-8

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