All Products
Search
Document Center

Data Management:GetOwnerApplyOrderDetail

Last Updated:Oct 21, 2024

Queries the details of the Database-OWNER, Table-OWNER, and Instance-OWNER tickets.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
OrderIdlongYes

The ID of the ticket.

730000
TidlongNo

The ID of the tenant.

Note : To view the ID of the tenant, log on to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see Manage DMS tenants.
-1

Response parameters

ParameterTypeDescriptionExample
object

The schema of the response.

RequestIdstring

The ID of the request.

CB784055-E8CB-4461-AB0B-483A1DA32BB5
Successboolean

Indicates whether the request is successful.

true
ErrorMessagestring

The error message returned if the request failed.

UnknownError
ErrorCodestring

The error code returned if the request failed.

UnknownError
OwnerApplyOrderDetailobject

The details of the ticket.

ApplyTypestring

The type of the submitted ticket. Valid values:

  • INSTANCE: the ticket that applies for the permissions to be an instance owner
  • DB: the ticket that applies for the permissions to be a database owner
  • TABLE: the ticket that applies for the permissions to be a table owner
DB
Resourcesarray<object>

The details of the requested resource.

Resourceobject

The details of the resource.

Logicboolean

Indicates whether the database is a logical database. Valid values:

  • true: The instance is a logical database.
  • false: The instance is not a logical database.
true
TargetIdstring

The ID of the resource.

12345
ResourceDetailobject

The details of the resource.

SearchNamestring

The search name of the resource.

yuyang【test】
DbTypestring

The type of the database engine.

MYSQL
EnvTypestring

The type of the environment to which the instance belongs. For more information, see Change the environment type of an instance.

PRODUCT
TableNamestring

The name of the table.

Note : This parameter is returned when you submit a Database-OWNER ticket.
test
OwnerIdsarray

The IDs of the original owners.

OwnerIdlong

The ID of the owner.

132453
OwnerNickNamesarray

The nicknames of the owners.

OwnerNickNamestring

The nickname of the owner.

test_user

Examples

Sample success responses

JSONformat

{
  "RequestId": "CB784055-E8CB-4461-AB0B-483A1DA32BB5",
  "Success": true,
  "ErrorMessage": "UnknownError",
  "ErrorCode": "UnknownError",
  "OwnerApplyOrderDetail": {
    "ApplyType": "DB",
    "Resources": [
      {
        "Logic": true,
        "TargetId": "12345",
        "ResourceDetail": {
          "SearchName": "yuyang【test】",
          "DbType": "MYSQL",
          "EnvType": "PRODUCT",
          "TableName": "test",
          "OwnerIds": [
            132453
          ],
          "OwnerNickNames": [
            "test_user"
          ]
        }
      }
    ]
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history