This is a series of articles dedicated to demonstrating how to get acquainted with Openprovider Domains API methods. To get more information about our API in general, please use our documentation portal as your reference.
Additional domain fields (also commonly referred to as Extended Attributes) define the information required by domain registries for a given TLD.
While most extensions can be registered with just the basic contact data (company name, contact name, address, telephone number and e-mail address), several extensions require additional contact information in order to register a domain name. When a domain registry requires the information, a domain name will fail to register successfully unless the values are provided.
Typical information requested by domain registries include things such as Registrant Legal Type, Registered Entity Name, etc.
Use endpoint path below. Base URL is determined by both the target environment and API version.
GET {base_url}/domains/additional-data/customers
REQUEST VALUES↓
Name | Type | Description |
domain.extension | string | Required. |
REQUEST EXAMPLE↓
curl -X GET \
'https://api.cte.openprovider.eu/v1beta/domains/additional-data?domain.extension=no' \
-H 'Authorization: ,Bearer {{token}}' \
RESPONSE EXAMPLE↓
{
"code": 0,
"data": [
{
"description": "IDN script states what language or character set the domain name is in",
"name": "idnScript",
"options": [
{
"description": "Norwegian",
"value": "no"
}
],
"required": false,
"type": "select"
}
],
"desc": ""
}