# SupportedIdentifiersAPI

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

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

# getAllSupportedIdentifiers

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

Get all supported identifiers by country.

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 | Country ISO 2 code.

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

    if (response) {
        dump(response)
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# Parameters

Name Type Description Notes
countryIso2Code String Country ISO 2 code.

# Return type

SupportedIdentifier

# Authorization

No authorization required

# HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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

Last Updated: 6/19/2022, 7:27:56 PM