Help Center> ModelArts> API Reference> Authorization Management> Viewing an Authorization List
Updated on 2024-03-21 GMT+08:00

Viewing an Authorization List

Function

This API is used to view an authorization list.

Debugging

You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.

URI

GET /v2/{project_id}/authorizations

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details, see Obtaining a Project ID and Name.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

sort_by

No

String

Sorting field. Options:

  • user_name: IAM user

  • create_time: created at

order

No

String

Sorting method. Options:

  • asc: ascending order

  • desc: descending order

limit

No

Integer

Maximum number of records returned on each page. Default value: 1000 The value range ranges from 1 to 1000.

offset

No

Integer

Start page for pagination display. The default value is 0.

Request Parameters

None

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

total_count

Number

Authorization information.

auth

Array of AuthorizationResponse objects

Authorization information list.

Table 4 AuthorizationResponse

Parameter

Type

Description

user_id

String

User ID. For details about how to obtain a user ID, see Obtaining a User ID. If user_id is set to all, all IAM users are authorized. If some IAM users have been authorized, the authorization setting will be updated. This parameter is mandatory only if the authorization method is set to Agency.

type

String

Authorization type. Agency is recommended.

Options:

  • agency: authorization through an agency

  • credential: authorization through an access Key (AK/SK)

content

String

Authorization content.

  • If Authorization Type is set to Agency, this field indicates the agency name.

  • If Authorization Type is set to AK/SK, this field indicates the access key ID (AK).

secret_key

String

Secret Access Key (SK). This field is required only when Authorization Method is set to AK/SK.

user_name

String

Username. If user_id is set to all-users, all users will be displayed.

create_time

Long

Timestamp when a training job was created

Example Requests

View an authorization list.

GET https://{endpoint}/v2/{project_id}/authorizations

Example Responses

Status code: 200

OK

{
  "total_count" : 1,
  "auth" : [ {
    "user_id" : "****d80fb058844ae8b82aa66d9fe****",
    "user_name" : "iam-user01",
    "type" : "agency",
    "content" : "modelarts_agency",
    "create_time" : 15657747821288
  } ]
}

Status Codes

Status Code

Description

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

Error Codes

See Error Codes.