This API is used to update the information about a protocol.
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
idp_id |
Yes |
String |
ID of an identity provider. |
protocol _id |
Yes |
String |
ID of a protocol. |
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 |
|---|---|---|---|
mapping_id |
Yes |
String |
Mapping ID. |
curl -i -k -H 'Accept:application/json' -H 'Content-Type:application/json;charset=utf8' -H "X-Auth-Token:$token" -X PATCH -d'{"protocol":{"mapping_id":"ACME"}}' https://sample.domain.com/v3/OS-FEDERATION/identity_providers/ACME/protocols/saml
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
id |
Yes |
String |
ID of a protocol. |
mapping_id |
Yes |
String |
Mapping ID. |
links |
Yes |
Object |
Protocol resource link. |
{
"protocol": {
"id": "saml",
"links": {
"identity_provider": "https://example.com/v3/OS-FEDERATION/identity_providers/ACME",
"self": "https://example.com/v3/OS-FEDERATION/identity_providers/ACME/protocols/saml"
},
"mapping_id": "ACME"
}
}
Status Code |
Description |
|---|---|
200 |
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 |
A resource conflict occurs. |
413 |
The request entity is too large. |
500 |
Internal server error. |
503 |
Service unavailable. |