Help Center/ ModelArts/ API Reference/ DevServer Management/ Obtaining the DevServer Plug-in List
Updated on 2025-11-19 GMT+08:00

Obtaining the DevServer Plug-in List

Function

This API is used to obtain the DevServer plug-in 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 /v1/{project_id}/dev-servers/plugins

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

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

Constraints: The value can contain 1 to 64 characters. Letters, digits, and hyphens (-) are allowed.

Range: N/A

Default Value: N/A

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

name

No

String

Definition: DevServer plug-in name.

Constraints: The value can contain letters, digits, and hyphens (-).

Range: N/A

Default Value: N/A

Request Parameters

None

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

current

Integer

Current page number.

data

Array of PluginResponse objects

Data

pages

Integer

Total number of pages.

size

Integer

Page size.

total

Long

Total number of records.

Table 4 PluginResponse

Parameter

Type

Description

name

String

Plugin name.

infos

Array of AIServerPlugin objects

Plugin details.

Table 5 AIServerPlugin

Parameter

Type

Description

id

String

Service plugin ID.

version

String

Plugin version.

status

String

Plugin status.

url

String

Plugin link.

Example Requests

None

Example Responses

Status code: 200

OK

{
  "current" : 1,
  "data" : [ {
    "infos" : [ {
      "id" : "68d860dd-6380-4a09-b484-b6cce6efb6ac",
      "status" : "ACTIVE",
      "url" : "https://abc.com/plugin",
      "version" : "1.1.0"
    } ],
    "name" : "NodeTaskHub"
  } ],
  "pages" : 1,
  "size" : 1,
  "total" : 1
}

Status Codes

Status Code

Description

200

OK

Error Codes

See Error Codes.