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. |
open class func v1SupportedIdentifiersCountryIso2CodeGet(countryIso2Code: String, completion: @escaping (_ data: SupportedIdentifier?, _ error: Error?) -> Void)Get all supported identifiers by country.
// 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)
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| countryIso2Code | String |
- Content-Type: Not defined
- Accept: application/json; charset=utf-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]