Files
doc-exports/docs/iam/api-ref/en-us_topic_0057845575.html
weihongmin1 46d24ba358 IAM API 0401 Version
Reviewed-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com>
Co-authored-by: weihongmin1 <weihongmin1@huawei.com>
Co-committed-by: weihongmin1 <weihongmin1@huawei.com>
2026-01-14 14:13:49 +00:00

23 KiB

Registering a Protocol

Function

This API is used to register a protocol, that is, associate a rule with an identity provider.

URI

  • URI format

    PUT /v3/OS-FEDERATION/identity_providers/{idp_id}/protocols/{protocol_id}

  • URI parameters

    Parameter

    Mandatory

    Type

    Description

    idp_id

    Yes

    String

    ID of an identity provider.

    protocol_id

    Yes

    String

    ID of a protocol.

Request Parameters

  • Parameters in the request header

    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.

  • Parameters in the request body

    Parameter

    Mandatory

    Type

    Description

    protocol

    Yes

    Object

    Protocol information.

  • protocol

    Parameter

    Mandatory

    Type

    Description

    mapping_id

    No

    String

    Mapping ID.

  • Example request
    curl -i -k -H 'Accept:application/json' -H 'Content-Type:application/json;charset=utf8' -H "X-Auth-Token:$token" -X PUT -d'{"protocol":{"mapping_id":"ACME"}}' https://sample.domain.com/v3/OS-FEDERATION/identity_providers/ACME/protocols/saml

Response Parameters

  • Parameters in the response body

    Parameter

    Mandatory

    Type

    Description

    protocol

    Yes

    Object

    Protocol information.

  • protocol

    Parameter

    Type

    Description

    id

    String

    Protocol ID.

    mapping_id

    String

    Mapping ID.

    links

    Object

    Protocol resource link information.

  • protocol.links

    Parameter

    Type

    Description

    identity_provider

    String

    Identity provider resource link.

    self

    String

    Resource link.

  • Example response
    {
        "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 Codes

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.

413

The request entity is too large.

500

Internal server error.

503

Service unavailable.