Files
doc-exports/docs/iam/api-ref/en-us_topic_0067148045.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

20 KiB

Querying Service Details

Function

This API is used to query service details.

URI

  • URI format

    GET /v3/services/{service_id}

  • Parameter description

    Parameter

    Mandatory

    Type

    Description

    service_id

    Yes

    String

    Service ID.

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.

  • Example request
    curl -i -k -H 'Accept:application/json' -H 'Content-Type:application/json;charset=utf8' -H "X-Auth-Token:$token" -X GET https://sample.domain.com/v3/services/5a4ed456d228428c800ed2b67b4363a7

Response Parameters

  • Parameters in the response body

    Parameter

    Type

    Description

    service

    Object

    Service information.

  • service

    Parameter

    Type

    Description

    name

    String

    Service name.

    description

    String

    Description of the service. This parameter is not returned when no service description is registered.

    links

    Object

    Service resource link.

    id

    String

    Service ID.

    type

    String

    Service type.

    enabled

    Boolean

    Whether a service is available.

  • service.links

    Parameter

    Type

    Description

    self

    String

    Resource link.

    previous

    String

    Previous resource link. If the previous resource link is unavailable, this parameter is set to null.

    next

    String

    Next resource link. If the next resource link is unavailable, this parameter is set to null.

Example response (successful response)
{
    "service": {
        "enabled": true,
        "type": "compute",
        "name": "nova",
        "links": {
            "self": "sample.domain.com/v3/services/5a4ed456d228428c800ed2b67b4363a7"
        },
        "id": "5a4ed456d228428c800ed2b67b4363a7"
    }
}

Status Codes

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.

413

The request entity is too large.

500

Internal server error.

503

Service unavailable.