Retrieve Link
To retrieve a link of the account associated with the IAM Federation in the form of an ID
, perform a GET
request.
Endpoint
Use the following endpoint to retrieve a link: https://iam.ionos.com/federation/links/{linkId}
.
Request
curl --X \
--request GET 'https://iam.ionos.com/federation/links/5eb3d304-dc75-56cb-9b94-152533912d33 \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO' \
--header 'Content-Type: application/json' \
Below is the list of mandatory path parameter:
Body Parameters
Type
Description
Example
domainId
string
The ID (UUID) of the link.
5eb3d304-dc75-56cb-9b94-152533912d33
Response
200 Successful operation
{
"id": "5eb3d304-dc75-56cb-9b94-152533912d33",
"type": "link",
"href": "/links/5eb3d304-dc75-56cb-9b94-152533912d33",
"metadata": {
"createdDate": "2020-12-10T13:37:50+01:00",
"createdBy": "ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"createdByUserId": "87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedDate": "2020-12-11T13:37:50+01:00",
"lastModifiedBy": "ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedByUserId": "87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"resourceURN": "ionos:<product>:<location>:<contract>:<resource-path>"
},
"properties": {
"id": "ac6f04c2-68e1-5e61-97c8-ef0216f1c08e",
"providerAlias": "oidc",
"displayName": "IdentityProvider ABC",
"linkedUsername": "linkedUsername ABC",
"linked": true
}
}
Last updated
Was this helpful?