This API is provided for the administrator to create an identity provider.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
id |
Yes |
String |
ID of an identity provider. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
Content-Type |
Yes |
String |
Fill application/json;charset=utf8 in this field. |
X-Auth-Token |
Yes |
String |
Authenticated token with the Security Administrator permission. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
Yes |
Object |
Identity provider information. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
sso_type |
No |
string |
Identity provider type. The following two types are supported:
The default value is virtual_user_sso. |
description |
No |
String |
Description of the identity provider. |
enabled |
No |
Boolean |
Whether an identity provider is enabled. true indicates that the identity provider is enabled. false indicates that the identity provider is disabled. The default value is false. |
PUT https://sample.domain.com/v3/OS-FEDERATION/identity_providers/{id}
{ "identity_provider": { "description": "Stores ACME identities.", "enabled": true } }
Parameter |
Type |
Description |
---|---|---|
Object |
Identity provider information. |
Parameter |
Type |
Description |
---|---|---|
sso_type |
string |
Identity provider type. |
id |
String |
Identity provider ID. |
description |
String |
Description of the identity provider. |
enabled |
Boolean |
Whether an identity provider is enabled. true indicates that the identity provider is enabled. false indicates that the identity provider is disabled. The default value is false. |
remote_ids |
Array of strings |
Federated user ID list of an identity provider. |
Object |
Identity provider resource link. |
{ "identity_provider": { "description": "Stores ACME identities", "enabled": true, "id": "ACME", "sso_type": "iam_user_sso", "remote_ids": [], "links": { "protocols": "https://example.com/v3/OS-FEDERATION/identity_providers/ACME/protocols", "self": "https://example.com/v3/OS-FEDERATION/identity_providers/ACME" } } }
Status Code |
Description |
---|---|
201 |
The request is successful. |
400 |
The server failed to process the request. |
401 |
Authentication failed. |
403 |
Access denied. |
404 |
The requested resource cannot be found. |
405 |
The method specified in the request is not allowed for the requested resource. |
409 |
Duplicate identity provider ID. |
413 |
The request entity is too large. |
500 |
Internal server error. |
503 |
Service unavailable. |