# MyDataMyConsent::SupportedIdentifiersApi

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

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

# get_all_supported_identifiers

get_all_supported_identifiers(country_iso2_code)

Get all supported identifiers by country.

Get all supported identifiers by country.

# Examples

require 'time'
require 'mydatamyconsent'

api_instance = MyDataMyConsent::SupportedIdentifiersApi.new
country_iso2_code = 'country_iso2_code_example' # String | Country ISO 2 code.

begin
  # Get all supported identifiers by country.
  result = api_instance.get_all_supported_identifiers(country_iso2_code)
  p result
rescue MyDataMyConsent::ApiError => e
  puts "Error when calling SupportedIdentifiersApi->get_all_supported_identifiers: #{e}"
end
1
2
3
4
5
6
7
8
9
10
11
12
13

# Using the get_all_supported_identifiers_with_http_info variant

This returns an Array which contains the response data, status code and headers.

, Integer, Hash)> get_all_supported_identifiers_with_http_info(country_iso2_code)
begin
  # Get all supported identifiers by country.
  data, status_code, headers = api_instance.get_all_supported_identifiers_with_http_info(country_iso2_code)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <SupportedIdentifier>
rescue MyDataMyConsent::ApiError => e
  puts "Error when calling SupportedIdentifiersApi->get_all_supported_identifiers_with_http_info: #{e}"
end
1
2
3
4
5
6
7
8
9

# Parameters

Name Type Description Notes
country_iso2_code String Country ISO 2 code.

# Return type

SupportedIdentifier

# Authorization

No authorization required

# HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json
Last Updated: 6/19/2022, 7:27:56 PM