For the complete documentation index, see llms.txt. This page is also available as Markdown.

Request Domain Ownership

Prerequisite: Only contract administrators, owners, and users with accessAndManageIamResources privilege can create and manage Identity Providers (IDPs) through the API. You can also set user privileges in the DCD. For more information, see Set User Privileges for Identity and Access Management.

To request the ownership of a domain, perform a POST request.

Endpoint

Use the following endpoint to request for domain ownership: https://iam.ionos.com/federation/domains.

Request

curl --location \
--request POST 'https://iam.ionos.com/federation/domains' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO' \
--header 'Content-Type: application/json' \
--data '{
  "domain": "yourcompany.com"
}'

Below is the list of mandatory body parameters:

Body Parameters

Type

Description

Example

domain

string

Represents the domain to map the user email domains to the IDPs.

yourcompany.com

To make authenticated requests to the API, the following fields are mandatory in the request header:

Header Parameters

Required

Type

Description

Authorization

yes

string

The Bearer token enables requests to authenticate using a JSON Web Token (JWT). From the DCD, Generate authentication token.

Content-Type

yes

string

Set this to application/json.

Response

202 Successful operation

Note:

  • The token value provided in the API response must be saved, as this will be the only time it is displayed. This token value must be added to the TXT Domain Record and proceed with the domain ownership verification.

  • If you are using IONOS Cloud DNS, you can add the TXT Domain Record by following the steps in Create a TXT Domain Record.

  • If your organization uses any other domain provider, contact your provider to locate the DNS settings and add the TXT record value.

Last updated

Was this helpful?